html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  background-color: rgb(95, 196, 95);
  padding: 0;
  min-height: 100vh;
}

.bodyContent {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow: auto;
}

header {
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header h1 {
  margin-top: 0;
  margin-bottom: 0.5vw;
  font-size: 7vw;
  color: black;
  max-width: 100%; 
}

header p {
  font-size: clamp(0.85rem, 3.5vw, 4rem);
}

p {
  color: black;
  font-size: clamp(0.75rem, 1.7vw, 2rem);
}

.margin {
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
}

nav ul {
  border: 0.08vw black solid;
  background-color: gold;
  background-size: cover;
  border-radius: 0.25vw;
  display: flex;
  list-style-type: none;
  padding: 1vw;
  margin: 1vw;
  font-size: 3.7vw;
  max-width: 100%; 
}

nav li {
  flex-grow: 1;
  text-align: center;
}

a {
  color: green;
  text-decoration: none;
}

a:hover {
  text-shadow: 0.2vw 0.2vw 0.2vw;
  color: black;
}

a.active {
  text-shadow: 0.2vw 0.2vw 0.2vw;
  font-weight: bold;
}

#homeLayout {
  flex: 1;
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 0.5vw;
  margin-top: 1vw;
  margin-bottom: 1.5vw;
  box-sizing: border-box;
}

h2 {
  text-align: center;
  font-size: clamp(0.8rem, 2.3vw, 2.5rem);
  margin: 1vw;
}

#homeSection, #homeAside {
  border: 0.08vw black solid;
  background-color: gold;
  border-radius: 0.25vw;
  padding: 0.5vw;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: 1vw;
  margin-right: 1vw;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  max-width: 100%;
  max-height: 100%;
}

#homeSection p, .citySection p {
  font-size: clamp(0.75rem, 2vw, 2.5rem);
  line-height: 1.8;
  word-wrap: break-word;
  padding: 0.5vw;
  margin: 0.5vw;
}

#homeAside ul, #homeAside ol, #homeAside li {
  font-size: clamp(0.95rem, 2vw, 3rem);
  list-style-type: none;
  font-weight: bold;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  padding-left: 1vw;
  margin: 0.5vw;
  overflow-wrap: break-word;
}

#homeAside ol li {
  padding-left: 2vw;
  list-style-type: circle;
}

#homeAside p {
  font-size: clamp(0.8rem, 1.6vw, 2.5rem);
  line-height: 1.5;
  padding: 0.5vw;
  margin: 0.5vw;
  word-wrap: break-word;
}

table {
  background-color: rgb(95, 196, 95);
  display: grid;
  grid-template-columns: auto;
  border: 0.08vw black solid;
  border-radius: 0.25vw;
  margin: 0.5vw;
  padding: 0.5vw;
}
 table caption {
  font-size: clamp(0.9rem, 2.5vw, 3rem);
  font-weight: bold;
  color: black;
  text-align: center;
 }

table thead, table tbody  {
  display: grid;
  justify-content: space-evenly;
}

table tr th {
  border: 0.065vw black solid;
  font-size: clamp(0.55rem, 2.2vw, 3rem);
  padding: 0.3vw;
}

table tr td {
  border: 0.065vw rgb(13, 5, 5) solid;
  font-size: clamp(0.54rem, 2vw, 3rem);
  padding: 0.3vw;
}

figure {
  position: relative;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
}

.imageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 0.5vw;
}

.imageContainer img {
  border: 0.08vw black solid;
  border-radius: 0.25vw;
  object-fit: contain;
  width: 100%;
  height: auto;
  max-width: 100%;
  z-index: 1;
}

.cityLayout {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1vw;
  padding: 0.5vw;
  margin-top: 0.5vw;
  margin-bottom: 1vw;
  box-sizing: border-box;
}

.cityAside, .citySection {
  border: 0.08vw black solid;
  background-color: gold;
  border-radius: 0.25vw;
  padding: 0.5vw;
  box-sizing: border-box;
  overflow: auto;
  margin: 0.5vw;
}

.citySection h2 { 
  font-size: clamp(0.8rem, 2vw, 2.5rem);
 }

.citySection p { 
  font-size: clamp(0.75rem, 1.8vw, 2.5rem);
  padding: 0.5vw;
  margin: 0.5vw;
  word-wrap: break-word;
}

.list ul {
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 2vw;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  font-size: clamp(0.8rem, 2vw, 2.5rem);
  font-weight: bold;
  padding: 0.5vw;
  margin: 0.5vw;
  overflow-wrap: break-word;
}

.list ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.list ul li ol {
  padding-left: 0;
  margin-top: 0.5vw;
  width: 100%;
}

.list ul li ol li {
  text-align: center;
  margin: 0.2vw 0;
  padding: 0.2vw 0;
}

.tables {
  background-color: rgb(95, 196, 95);
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5vw;
  flex-grow: 1;
  justify-content: space-evenly;
  align-items: center;
  border: 0.08vw black solid;
  border-radius: 0.25vw;
  margin: 0.5vw;
  padding: 0.5vw;
}

.pDiv {
  flex: 1;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.5vw;
  flex-grow: 1;
  height: fit-content;
}

.pDiv p {
  flex: 1;
  flex-grow: 1;
  height: fit-content;
  border: 0.08vw black solid;
  background-color: gold;
  border-radius: 0.25vw;
  padding: 0.5vw;
  box-sizing: border-box;
  overflow: auto;
  margin: 1vw;
  font-size: clamp(0.65rem, 2vw, 2.5rem);
  line-height: 1.4;
  word-wrap: break-word;

}

figcaption {
  position: absolute;
  bottom: 0;
  left: 35%;
  width: auto;
  text-align: center;
  background: gold;
  border-radius: 0.25vw;
  border: 0.09vw black solid;
  padding: 0.2vw;
  font-size: clamp(0.49rem, 1.58vw, 1.78rem);
  font-style: italic;
  z-index: 1;
}

figcaption span {
  white-space: nowrap;
  display: inline-block;
  color: black;
}

figcaption a {
  text-decoration: none;
  font-size: clamp(0.5rem, 1.6vw, 1.8rem);
  font-style: normal;
  color: green;
}

figcaption a:hover {
  color: black;
  text-shadow: 0.1vw 0.1vw 0.1vw;
}

.contactLayout {
  flex: 1;
  box-sizing: border-box;
  margin-top:  0.5vw;
  margin-bottom:  1vw;
}

.contact { 
  border: 0.08vw black solid;
  background-color: gold;
  border-radius: 0.25vw;
  padding: 0.5vw;
  box-sizing: border-box;
  overflow: hidden;
  margin: 1vw;
  max-width: 100%;
  max-height: 100%;
}

form.contact fieldset {
  text-align: center;
  margin: 1vw;
  padding: 1vw;
  border: 0.08vw black solid;
  border-radius: 0.25vw;
  background-color: rgb(95, 196, 95);
  box-sizing: border-box;
}

form.contact legend {
  font-size: clamp(0.8rem, 2.7vw, 3.2rem);
  border: 0.08vw black solid;
  border-radius: 0.25vw;
  background-color: white;
}

form.contact input {
  width: calc(100% - 1vw);
  height: 5vw;
  max-width: 40vw;
  max-height: 5vw;
  box-sizing: border-box;
  overflow: hidden;
  border: 0.08vw black solid;
  border-radius: 0.25vw;
}

form.contact input:valid {
  background-color: gold;
}

form.contact label, form.contact input, form.contact input::placeholder, form.contact textarea, form.contact button {
  margin: 0.5vw;
  padding: 0.5vw;
  font-size: clamp(0.75rem, 2.5vw, 3rem);
}

.formInput {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

.messageArea {
  margin: 1vw;
  padding: 1vw;
}

#message {
  width: calc(100% - 1vw);
  height: 30vh;
  max-width: 80vw;
  max-height: 40vh;
  box-sizing: border-box;
  overflow: auto;
  border: 0.08vw black solid;
  border-radius: 0.25vw;
}

#positionMessage {
  float: right;
  width: 50%;
}

.button {
  width: 25%;
  border: 0.08vw black solid;
  border-radius: 0.25vw;
  background-color: gold;
  box-sizing: border-box;
}

form.contact button:hover {
  background-color: green;
}

footer {
  margin-top: auto;
  margin-left: 1vw;
  margin-right:  1vw;
  padding: 1vw;
  border: 0.08vw black solid;
  background-color: gold;
  border-radius: 0.25vw;
}

footer p {
  text-align: center;
  font-size: clamp(0.49rem, 1.58vw, 1.78rem);
  margin: 0 0;
  font-style: italic;
}

footer p a {
  font-size: clamp(0.5rem, 1.6vw, 1.8rem);
  font-style: normal;
}

