*{
    margin: 0;
}

#logo{
    width: 150px;
    max-width: 20%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 0px;
}

.h-8{
    height: 50px;

}
.nav-link {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 20px;
  }
.nav-link:hover {
    text-decoration: underline;
  }

.social-icons{
    color: #ffffff;
}

footer{
    background-color: #222222;
}

.explore-button {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.explore-button:hover {
    background-color: white;
    color: black;
}
  
.logo-container {
    margin-left: 130px; /* Default for larger screens */
}

@media (max-width: 768px) {
    .logo-container {
        margin-left: 20px; /* Adjusted for tablets */
    }
}

@media (max-width: 480px) {
    .logo-container {
        margin-left: 10px; /* Adjusted for mobile phones */
    }
}

.logo-container {
    margin-left: 130px; /* Default for larger screens */
}

@media (max-width: 768px) {
    .logo-container {
        margin-left: 20px; /* Adjusted for tablets */
    }
}

@media (max-width: 480px) {
    .logo-container {
        margin-left: 10px; /* Adjusted for mobile phones */
    }
}

.animate-fade-in {
    opacity: 1 !important;
}

/* From Uiverse.io by milegelu */ 
.button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
    cursor: pointer;
    font-family: sans-serif;
  }
  
  /* Shadow layer */
  .button .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  
  /* Edge layer */
  .button .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(
      to left,
      hsl(217, 33%, 16%) 0%,
      hsl(217, 33%, 32%) 8%,
      hsl(217, 33%, 32%) 92%,
      hsl(217, 33%, 16%) 100%
    );
  }
  
  /* Front layer */
  .button .front {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1.25rem;
    color: white;
    background: hsl(217, 33%, 17%);
    border-radius: 8px;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  
  /* Hover and active states */
  .button:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  }
  
  .button:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  }
  
  .button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
  }
  
  .button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
  }
  
  /* Disable text selection */
  .button .front span {
    user-select: none;
  }
  

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    font-family: sans-serif;
  }

  #loader {
    position: fixed;
    inset: 0;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  #loader.hidden {
    opacity: 0;
    pointer-events: none;
  }

  #page-content {
    display: none;
    padding: 2rem;
    background-color: #111;
    color: white;
    height: 100%;
  }
  /* From Uiverse.io by bociKond */ 
.spinner {
    width: 70.4px;
    height: 70.4px;
    --clr: rgb(247, 197, 159);
    --clr-alpha: rgb(247, 197, 159,.1);
    animation: spinner 1.6s infinite ease;
    transform-style: preserve-3d;
  }
  
  .spinner > div {
    background-color: var(--clr-alpha);
    height: 100%;
    position: absolute;
    width: 100%;
    border: 3.5px solid var(--clr);
  }
  
  .spinner div:nth-of-type(1) {
    transform: translateZ(-35.2px) rotateY(180deg);
  }
  
  .spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
  }
  
  .spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
  }
  
  .spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
  }
  
  .spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
  }
  
  .spinner div:nth-of-type(6) {
    transform: translateZ(35.2px);
  }
  
  @keyframes spinner {
    0% {
      transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }
  
    50% {
      transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }
  
    100% {
      transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
  }
/* From Uiverse.io by alexmaracinaru */ 
.card {
    width: 190px;
    height: 264px;
    background: rgb(183, 226, 25);
    font-family: inherit;
    position: relative;
    border-radius: 8px;
  }
  
  .quote {
    color: rgb(223, 248, 134);
    padding-left: 30px;
    position: relative;
  }
  
  .card-name {
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(127, 155, 29);
    padding: 35px;
    line-height: 23px;
  }
  
  .body-text {
    font-size: 20px;
    font-weight: 900;
    padding: 60px 40px 0;
    color: #465512;
    position: absolute;
    top: 40px;
    left: 1px;
    line-height: 23px;
  }
  
  .author {
    margin-top: 5px;
    opacity: 0;
    transition: 0.5s;
  }
  
  .card:hover .author {
    opacity: 1;
  }
  
  .pic {
    width: 50px;
    height: 50px;
    background-color: rgb(158, 196, 21);
    border-radius: 50%;
  }
  
  .author-container {
    display: flex;
    align-items: center;
  }
  
  .author {
    font-weight: 700;
    color: rgb(127, 155, 29);
    padding-left: 30px;
  }
  
  .card .author svg {
    display: inline;
    font-size: 12px;
    color: rgba(128, 155, 29, 0.452);
  } 