body{
    font-family: "Yuyu", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10%;
    margin-top: 20px;
    font-size: 1.1rem;
    background: linear-gradient( Yellow, #f9ffcb);
    background-attachment: fixed;
    color: #000000;
    text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px #ffffff, 1px -1px 0px #ffffff, -1px 1px 0px #ffffff;
    text-align: center;
}

#photo{
    width: 60%;
    max-width: 400px;
    border-radius: 20%;
    border: 5px solid #ffffff;
    box-shadow: 0px 0px 10px #000000;
}

h2{
    margin-bottom: 1px;
    background: #619929;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid white;
}

#feel{
    margin-top: 20px;
    border-radius: 10px;
    border: 2px solid white;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1; 
    border: 5px solid #ffffff;
    box-shadow: 0px 0px 10px #000000;
    background-image: url('../img/gift.png');
    background-position: center;
    background-size: cover;
}

#feel:hover{
    transform: scale(1.1);
    transition: transform 0.5s ease-in-out;
    background-image: url('../img/feel.gif');
    background-position: center;
    background-size: cover;
    background-color: #f9ffcb;
}