* {
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    font-family: Happy Monkey, cursive;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#a2d2ff, #EFB0C9);
    color: white;
    text-shadow: 2px 2px 3px black;
    text-align: center;
}
#bff-img {
    width: 20%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #EFB0C9;
}
#bday-age {
    background: #EFB0C9;
    padding: 2px 5px;
    border: 5px solid #EFB0C9;
    border-radius: 3px;
    margin-bottom: 5px;
}
#bday-date {
    margin: 0;
    background: #EFB0C9;
    padding: 2px 5px;
    border: 5px solid #EFB0C9;
    border-radius: 3px;
}
.gift-section {
    margin-top: 1.5rem;
}
.gift-title-1 {
    margin-bottom: 0;
}
.gift-hint {
    margin-top: 0.5rem;
}
.gift-cover {
    background-image: url("/assets/GIFt-materials/gift-cover.webp");
    background-size: cover;
    margin: 0 auto;
    width: 60vw;
    aspect-ratio: 1/1;
    max-width: 400px;
    max-height: 400px;
    border: 3px solid white;
    border-radius: 6px;
}
#gift-cover-1:hover {
    background-image: url("/assets/GIFt-materials/Happy-Sesame-Street.gif");
    background-size: cover;
}
#gift-cover-2:hover {
    background-image: url("/assets/GIFt-materials/hot.gif");
    background-size: cover;
}
#gift-cover-3:hover {
    background-image: url("/assets/GIFt-materials/Genius.gif");
    background-size: cover;
}
#gift-cover-4:hover {
    background-image: url("/assets/GIFt-materials/John-Cena.gif");
    background-size: cover;
}
#gift-cover-5 {
    width: 60vw;
    aspect-ratio: 2/1;
}
#gift-cover-5:hover {
    background-image: url("/assets/GIFt-materials/cheers.gif");
    background-size: cover;
}
.footer a {
    font-style: italic;
    color: white;
}
@media (max-width: 768px) {
    #bff-img {
        width: 40%;
    }
}