html {
    height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    text-align: center;
    font-family: 'Happy Monkey', cursive;
    background: linear-gradient(#a2d2ff, #EFB0C9);
    color: white;
    background-attachment: fixed;
    background-size: cover;
}

h1,
h2,
h3,
h4,
p {
    text-shadow: 0 0 1px black;
}

#diana-img {
    width: 150px;
    border-radius: 50%;
    border: 6px solid #EFB0C9;
    background-size: cover;
}

#age {
    background: #EFB0C9;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#date {
    background: #EFB0C9;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 0;
}

#header {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.gift-section {
    margin-top: 50px;
}

.gift-title {
    margin-bottom: 10px;
}

.gift-hint {
    margin-top: 0;
}

.gift-img {
    height: 400px;
    max-width: 400px;
    border: 6px solid white;
    border-radius: 10px;
    margin: 20px auto;
    background-image: url("images/gift-cover.jpg");
    background-size: cover;
}

#gift-img-happy:hover {
    background-image: url("images/happy.gif");
    transition: background-image 0.3s ease;
}

#gift-img-hot:hover {
    background-image: url("images/hot.gif");
    transition: background-image 0.3s ease;
}

#gift-img-genius:hover {
    background-image: url("images/genius.gif");
    transition: background-image 0.3s ease;
}

#gift-img-badass:hover {
    background-image: url("images/badass.gif");
    transition: background-image 0.3s ease;
}

#gift-img-cheers:hover {
    background-image: url("images/cheers.gif");
    transition: background-image 0.3s ease;
}


#gift-img-cheers {
    height: 200px;
}

#love {
    font-style: italic;
    font-size: x-large;
}

#footer {
    margin: 40px auto 20px;
    width: 200px;
    font-style: italic;

}

a {
    color: white;
}