* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex: 1;
  }
  
    body {
    font-family: sans-serif;
    line-height: 1.5;
    color: #333;
  }

    .navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 10;
    padding: 1.5rem 2rem;
  }
  
  .logo {
    font-size: 1.75rem;
    font-weight: bold;
    color: #c2410c;
    text-decoration: none;
    line-height: 1;
  }

  .nav-logo {
    justify-content: flex-start;
  }

  .nav-links {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 5rem;
    text-decoration: none;
    color: #504c4cde;
    text-shadow: 0px 0px 20px #504c4cde;
  }
  
  .nav-links a:hover {
    color: #c2410c;
  }

  .three-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    justify-content: center;
    align-items: top;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shop-option {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .shop-option img {
    height: auto;
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    max-height: 100%;
    box-shadow: .2rem .2rem 2rem 0 rgba(0, 0, 0, .4);
  }

  .book-cover {
    max-width: 15vw;
    height: auto;
  }

  .shop-option h2 {
    margin-top: 2rem;
  }

  .shop-option p {
    margin-top: 1rem;;
  }

  .button-to-square {
    padding: .75rem 2rem;
    background-color: #bd6405;
    color: white;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 1.5rem;
    /* border-radius: 8px; */
    transition: background-color 0.3s ease;
  }
  

footer {
    font-size: smaller;
    text-align: center;
  }

  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: stretch;
      padding: 1rem;
    }
  
    .nav-links {
      flex-direction: row;
      justify-content: space-evenly;
      align-items: center;
      
      /* margin-top: 1rem; */
    }
  
    .nav-links a {
      margin: 0.5rem 0;
      font-size: 1rem;
      margin-top: 1rem;
    }

    .book-cover {
      max-width: 50vw;
    }

    .shop-option h2 {
      font-size: 1.1rem;
    }

    .shop-option p {
      font-size: .75rem;
    }

    footer {
      font-size: .5rem;
    }
  }