/* * {
    background-color: lightpink;
}

#firstone {
    height: 100px;
    width: 100px;
    background-color: aqua;
    background-size: cover;
} */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
body {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    /* background: linear-gradient(purple, #efb0c9); */
    /* background-color: #fce5af; */
    /* background: linear-gradient(#fdf5e2, #23162b); */
    background-image: linear-gradient(to bottom, #413c39, #473c39, #4b3b3d, #4e3b43, #4c3c4c);
    color: #c0c0bf;
}

#profile {
    width: 150px;
    border-radius: 50%;
    height: 150px;
    border: 4px solid #cf9b7f;
    background-size: cover;
    margin-bottom: 10px;
}

#bday-age {
    /* background: #efb0c9; */
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 0 10px 0;
}

#bday-date {
    margin: 0;
    /* background: #efb0c9; */
    padding: 5px 10px;
    border-radius: 5px;
}

#header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subpart {
    margin-top: 50px;
}

.title {
    margin-bottom: 10px;
}

.text {
    margin-top: 0;
}

/* #image-cheers {
    height: 200px;
} */

.image {
    margin: 20px auto;
    max-width: 400px;
    height: 400px;
    border: 2px solid #c0c0bf;
    border-radius: 10px;
    background-image: url('https://i.insider.com/61b3d3dd534fc70019e05b65?width=700');
    background-size: cover;
}

#image-one:hover {
    background-image: url('https://media.giphy.com/media/ICOgUNjpvO0PC/giphy.gif');
}

#image-two:hover {
    background-image: url('https://media.giphy.com/media/hTgmFytUwwHLaMahU1/giphy.gif');
    /* background-position: center; */
}

#image-three:hover {
    background-image: url('https://media.giphy.com/media/v6aOjy0Qo1fIA/giphy.gif');
}

#image-four:hover {
    background-image: url('https://media.giphy.com/media/X3Yj4XXXieKYM/giphy.gif');
    /* background-size: 50%; */
}

#image-five:hover {
    background-image: url('https://media.giphy.com/media/eRXQ9JRiOHSNwVoGxt/giphy.gif');
    animation-name: birthday;
    animation-delay: 0s;
    animation-duration: 15s;
    animation-iteration-count: 1;
}

#footer {
    width: 400px;
    margin: 40px auto 20px;
}

a {
    text-decoration: none;
    color: #c0c0bf;
}
@keyframes birthday {
    0% {
        background-image: url('https://media.giphy.com/media/eRXQ9JRiOHSNwVoGxt/giphy.gif');
    }
    60% {
        background-image: url('https://media.giphy.com/media/eRXQ9JRiOHSNwVoGxt/giphy.gif');
    }
}
