/*
* Colours: White, Green #00663a, Light Grey #e0e0e0, Light Yellow #f5f5dc
*/

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: medium;
  text-align: center;
  overflow-x: visible;
  overflow-y: scroll;
  background-color: white;
  color: #00663a;
  display: block;
  margin: auto;
}

header {
  padding: 1.5rem;
}

.logo {
  width: 3rem;
}

footer {
  padding: 1.5rem;
  background-color: #00663a;
}

.opening {
  background-color: #00663a;
  color: white;
  padding: 1rem;
  margin-bottom: 0;
}

img {
  width: 15rem;
}

h2,
h4 {
  color: white;
}

h3 {
  padding: 0.5rem;
}

.contact {
  font-size: xx-small;
}

span {
  font-size: large;
  padding: 1rem;
}

.altText {
  text-align: center;
  font-size: x-small;
}

.menu {
  background-color: #f5f5dc;
  color: #00663a;
  margin: 0;
  padding: 1.5rem;
}

/* Tab */
.tab {
  background-color: #f5f5dc;
  display: flex;
  justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  color: #333333;
  border: none;
  outline: none;
  font-size: medium;
  padding: 0.5rem 0.5rem;
  font-weight: bold;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: white;
  color: #00663a;
  font-weight: bolder;
  font-size: large;
}

/* Style the tab content */
.tabcontent {
  background-color: white;
  color: #00663a;
  padding-bottom: 1.5rem;
  margin: 1rem;
}

table {
  border-collapse: collapse;
  margin: 1rem auto;
}

th {
  background-color: #00663a;
  color: white;
  font-weight: bold;
  border: 0.3rem solid #333333;
  padding: 0.25rem;
}

td {
  border: 0.3rem solid #e0e0e0;
  color: black;
  padding: 0.25rem;
  white-space: pre-wrap;
  background-color: #f5f5dc;
}

a {
  color: white;
  text-decoration: none;
  display: inline-table;
  margin: 1rem;
  text-align: center;
}

.circle {
  background-color: #f5f5dc;
  border-radius: 15%;
  width: 3rem;
  height: 3rem;
  display: inherit;
}

span {
  line-height: inherit;
}

/* Mobile Phones */
@media (max-width: 480px) {
  body {
    width: 100%;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    width: 80%;
  }
}

/* Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
  body {
    width: 30%;
  }
}
