html {
    font-size: 62.5%;
  }
  
  body {
    font-family: "Poppins";
    background-color: rgb(255, 255, 255);
  }
  
  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1 {
    font-size: 5.2rem;
    font-family: "Playfair Display";
    font-weight: normal;
  }
  
  .flex {
    display: flex;
  }
  
  .center {
    justify-content: center;
  }
  
  .mt-medium {
    margin-top: 5em;
  }
  
  .bold {
    font-weight: bold;
  }
  
  /* Header */
  
  .logo {
    width: 36em;
  }
  
  /* Main */
  
  .slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  .slides {
    display: block;
    width: 70em;
    max-width: 70em;
  }
  
  .slides > img {
    vertical-align: middle;
    width: 70em;
    height: 45em;
    object-fit: cover;
    border-radius: 3px;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1s;
  }
  
  @keyframes fade {
    from {
      opacity: 0.8;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Buttons */
  
  .btn-section {
    gap: 6em;
  }
  
  .btn {
    background-color: #f1e2d1;
    font-size: 1.6rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
    border-radius: 1.2em;
    padding: 0.7em 1.6em;
  }
  
  .btn:hover {
    background-color: #e2d1bd;
  }
  
  /* Text under slideshow */
  
  .info {
    width: 60em;
    text-align: center;
    font-size: 1.8rem;
  }
  
  .info > * + * {
    margin-top: 0.2em;
  }
  
  .info > div > a {
    color: black;
  }
  
  /* Map */
  
  .map {
    width: 70em;
    max-width: 70em;
    height: 45em;
  }
  
  /* Footer */
  
  footer {
    padding: 80px;
    width: 100%;
    overflow: hidden;
    color: #000;
    background: #fafbff;
    text-align: center;
    font-size: 1.3rem;
  }
  
  footer > a {
    color: black;
  }
  
  /* Media query */
  
  @media only screen and (max-width: 450px) {
    .slides {
      width: 40em;
      max-width: 40em;
    }
  
    .slides > img {
      vertical-align: middle;
      width: 40em;
      height: 29em;
      object-fit: cover;
      border-radius: 3px;
    }
  
    .map {
      width: 40em;
      max-width: 40em;
      height: 29em;
    }
  
    .mt-medium {
      margin-top: 6em;
    }
  
    h1 {
      font-size: 4rem;
      font-family: "Playfair Display";
      font-weight: normal;
    }
  }