@font-face {
  font-family: 'CustomFont';
  src: url('fonts/Quicksand-VariableFont_wght.ttf') format('truetype');
}

body {

    font-family: 'CustomFont', Arial, sans-serif;

    color: #ffffff;
line-height: 2;

  position: relative;
background-color: #46A2BB;
  background-image: url('img/background.jpeg');
      background-position: center;
background-size: cover;
      background-repeat: no-repeat;
background-attachment: fixed;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(70, 162, 187, 0.8); /* Change the last value (0.5) to control the transparency (0 = fully transparent, 1 = fully opaque) */
  z-index: -1; /* To place the overlay behind your content */
}

h1 {
line-height: 1;
    font-size: 1.5rem;
}

.subtitle {
      font-weight: lighter;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    border-radius: 50%; /* Make the logo image round */
    border: 5px solid #CAE3DB; /* Add this line to create a border around the image */
}

li {
font-size: 1.1em;
}

.section {
    text-align: left;
    margin-bottom: 30px;
}

.section h2 {
    border-bottom: 1px solid #9cc;
    padding-bottom: 5px;
}

    .contact-button {
      display: inline-block;
      padding: 10px 20px;
background-color: rgba(0, 0, 0, 0.1);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }
    .contact-button:hover {
background-color: rgba(0, 0, 0, 0.3);
    }

    .map-link {
      display: inline-block;
      padding: 10px 20px;
background-color: rgba(0, 0, 0, 0.1);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }
    .map-link:hover {
background-color: rgba(0, 0, 0, 0.3);
    }

.footer {
    text-align: center;
    font-size: 1rem;
}

.footer a {
    margin: 0 10px;
    text-decoration: none;
    color: #CAE3DB;
}

.footer p {
    margin: 10px 0;
    color: #CAE3DB;
}
