html, body {
    background-color: #ffcf3a;
    margin: 0; 
    height: 100%; 
    overflow: hidden
}

#card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #e9c4b2;
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    z-index: 2;
}

#card2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #f39795;
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    z-index: 1;
    margin-top: 15px;
    box-shadow: 0rem 0.5rem 2rem 0.25rem rgb(0 0 0 / 40%)
}

#card-image img {
    border-radius: 100%;
    width: 200px;
    margin-top: 20px;
}

#card-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    width: 360px;
    margin: 10px;
}

.card-items{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    padding: 20px;
    margin: 5px;
    border-radius: 10px;
    max-width: 360px;
    width: 100%;
    height: 15px;
    max-height: 15px;
    background-color: #ecb6ab;
}

#website-disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 5pxz;
    width: 360px;
    font-size: 10pt;
    text-align: center;
    color: #f39795;
    /*margin-bottom: 20px;*/
}

@keyframes pan {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 0%;
    }
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#egg-pattern-container {
    width: 100%;
    height: 100vh;
}

#egg-pattern {
    background-image: url("/assets/egg_pattern.svg");
    background-size: 10%;  
    position: relative;
    left: 50%;
    top: 0px;
    translate: -50% 0%;
    height: 100%;
    width: 100%;
    min-width: 1200px;
    opacity: 0.2;
    animation: pan 180s linear infinite;
    will-change: background-position;
    z-index: 0;
    overflow: hidden;
}

#egg-pattern-overlay {
    background: radial-gradient(circle, transparent 45%, #ffcf3a);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.9;
    z-index: 2;
}

/* 2xs */
@media (min-width: 320px) {
    #card {
        max-width: 260px;
    }

    #card2 {
        max-width: 260px;
    }

    .card-items {
        max-width: 145px;
    }
}

/* xs */
@media (min-width: 475px) {
    #card {
        max-width: 315px;
    }

    #card2 {
        max-width: 315px;
    }
    
    .card-items {
        max-width: 195px;
    }
}

/* sm */
@media (min-width: 640px) { 
    #card {
        max-width: 480px;
    }

    #card2 {
        max-width: 480px;
    }
    .card-items {
        max-width: 360px;
    }
}

/* md */
@media (min-width: 768px) {
    #card {
        max-width: 480px;
    }

    #card2 {
        max-width: 480px;
    }

    .card-items {
        max-width: 360px;
    }
}

/* lg */
@media (min-width: 1024px) {
    #card {
        max-width: 480px;
    }

    #card2 {
        max-width: 480px;
    }

    .card-items {
        max-width: 360px;
    }
}

/* xl */
@media (min-width: 1280px) {
    #card {
        max-width: 480px;
    }

    #card2 {
        max-width: 480px;
    }

    .card-items {
        max-width: 360px;
    }
}

/* 2xl */
@media (min-width: 1536px) {
    #card {
        max-width: 480px;
    }

    #card2 {
        max-width: 480px;
    }

    .card-items {
        max-width: 360px;
    }
}