  @media (prefers-reduced-motion: no-preference) {
    * {
    scroll-behavior: smooth;
    }
  }
  
  html {
    /* Setting a base font size of 10px give us easier rem calculations
       Info: 1rem === 10px, 1.5rem === 15px, 2rem === 20px and so forth
     */
    font-size: 10px;
  }
  
  body {
    /* Native font stack https://getbootstrap.com/docs/4.2/content/reboot/#native-font-stack */
    display: block;
    color: white;
    background: rgb(102, 181, 255);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }

  header {
    width: 100%;
    height: 50px;
    background-color: #1b1b32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
  }
  
  #logo {
    width: max(100px, 18vw);
    background-color: #0a0a23;
    aspect-ratio: 35 / 4;
    padding: 0.4rem;
  }

  nav {
    width: 50%;
    max-width: 300px;
    height: 50px;
  }
  
  nav > ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    padding-inline-start: 0;
    margin-block: 0;
    height: 100%;
  }
  
  nav > ul > li {
    color: #dfdfe2;
    margin: 0 0.2rem;
    padding: 0.2rem;
    display: block;
  }
  
  nav > ul > li:hover {
    background-color: #dfdfe2;
    color: #1b1b32;
    cursor: pointer;
  }
  
  li > a {
    color: inherit;
    text-decoration: none;
  }
  
  header h1 {
    color: #f1be32;
    font-size: min(5vw, 1.2em);
    text-align: center;
  }

  main h1 {
    font-size: 4rem;
    margin-bottom: 0;
  }

  @media (max-width: 460px) {
    h1 {
      font-size: 3.5rem;
      line-height: 1.2;
    }
  }

  h2 {
    font-size: 3.25rem;
  }
  
  a {
    color: #8dcbfd;
  }
  
  a:visited {
    color: #8dcbfd;
  }

  a:hover {
    color: #fff453;
  }

  button {
    display: block;
    margin: 20px auto;
    width: 40%;
    padding: 15px;
    font-size: 23px;
    background: #d0d0d5;
    border: 3px solid #3b3b4f;
  }

  #main {
    margin: 30px 8px;
    padding: 15px;
    border-radius: 5px;
    background: #364b63;
  }
  
  @media (max-width: 460px) {
    #main {
      margin: 0;
    }
  }

  #image {
    max-width: 100%;
    height: auto;
    display: block;
    border: 1px solid #d3f3ff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  
  #img-div {
    background: #d1f2ffff;
    padding: 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #img-caption {
    margin: 15px 0 5px 0;
    color: #333;
    text-align: center;
  }
  
  @media (max-width: 460px) {
    #img-caption {
      font-size: 1.4rem;
    }
  }

  main {
    padding-top: 50px;
  }

  #headline {
    margin: 50px 0;
    text-align: center;
  }

  #headline h1 {
    font-family: Fredoka One, sans-serif;
    font-size: 50px;
  }

  #headline p {
    font-family: KoHo, serif;
    font-size: 1.2rem;
    margin-top: -1em;
    margin-bottom: 2em;
  }

  ul {
    max-width: 550px;
    margin: 0 auto 50px auto;
    text-align: left;
    line-height: 1.6;
  }
  
  li {
    margin: 16px 0;
  }

  blockquote {
    font-style: italic;
    max-width: 545px;
    margin: 0 auto 50px auto;
    text-align: left;
  }