@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Happy+Monkey&display=swap');

*{  
    margin: 0;
    padding: 0;
    font-family: 'Happy Monkey';
}

body{
    background: linear-gradient(lightskyblue,white);
}

#header{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;

}
#person{
    width: 40%;
    max-width: 300px;
    border-radius: 50%;
    border: 6px solid pink;
    margin: 1em;
}

.text{
    background-color: pink;
    border-radius: 10px;
    padding: 10px;
    margin: 1em;
    border: 3px solid rgb(221, 115, 133);
}

.giftSection{
    text-align: center;
}

#giftContainer {
    width: 300px;
    height: 400px;
    margin: 1em auto;
    border: 6px solid pink;
    border-radius: 15px;
    background-image: url("https://images.unsplash.com/photo-1512909006721-3d6018887383?q=80&w=1470&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease; 
    cursor: pointer;
}

#giftContainer:hover {
    background-image: url("https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExeHkzd3VrZ2d1dWRjb25uNzRjdWc0b3J5NnhtMHlnOHlyb2U2YXFtNCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3o7qE2VAxuXWeyvJIY/giphy.gif");
    transform: scale(1.05);
}