html {
  margin: 0;
  padding: 0;
  overflow: auto;
}

/* BODY */

body {
  background-color: #244161a1;
  background-image: url("../pictures/background/background_home.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
  background-size: cover;
  margin: 0;
  margin-bottom: 10vh;
  padding: 0;
  overflow: hidden;
}

p {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a {
  font-style: normal;
}

a:hover {
  color: #8c713f;
}

h1 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h3 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h5 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h6 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

ul li {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

ol li {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* MAIN */

.content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.info {
  background-color: #415061e6;
  border: solid;
  border-radius: 10px;
  margin: 2%;
  padding: 1em;
  width: 100%;
  max-width: -webkit-fill-available;
  color: aliceblue;
}

@media screen and (max-width: 1000px) {
  .info {
    width: 100%;
    padding: 10px;
  }
  
}

.welcome {
  background-color: #244161;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

.offer {
  background-color: #244161;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

#banner {
  position: relative;
  width: 100%;
  height: 50vh;
}

img {
  width: 100%;
  height: 100%;
}

.overlay-text {
  position: absolute;
  top: 40%; /* Adjust to vertically center the text */
  left: 50%; /* Adjust to horizontally center the text */
  transform: translate(-50%, -75%); /* Center the text precisely */
  color: white; /* Set text color */
  font-size: 7em;
  font-family: auto;
}

.spacer {
  background: #244161;
  padding: 50px;
}

/* HEADER */

header {
  text-align: center;
  background-color: #96BAE0;
  padding-top: 10px;
}

#logo {
  width: 300px;
}

nav {
  background-color: #244161;
  padding: 10px;
}

@media screen and (max-width: 1000px) {
  #loc {
    font-size: 0.75em;
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

@media screen and (max-width: 1000px) {
  .nav-links {
    font-size: 2em;
  }
}

.nav-links li {
  margin-right: 1rem;
  padding: 0.65em;
}

@media screen and (max-width: 1000px) {
  .nav-links li {
    margin: auto;
  }
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
  color: lightgray;
}

.nav-links a:hover {
  color: #c39e57;
}

/* FOOTER */

footer {
  background-color: #96BAE0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
}

@media screen and (max-width: 1000px) {
  footer {
    height: 7%;
  }
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  color: #333;
}

@media screen and (max-width: 1000px) {
  .contact-links {
    font-size: 2em;
  }
}

.contact-links li, a {
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
}

.conlink {
  color: blue;
}