html {
    height: 100%;
}

body {
    text-align: center;
    font-family: 'Happy Monkey', cursive;
    /* background: linear-gradient(#a2d2ff,#EFB0C9); */
    color: white;
    margin: 0;
}

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

#main-content {
    position: fixed;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(#a2d2ff,#EFB0C9);
    height: calc(100% - 80px);
    width: 100%;
}

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

#ender-img {
    width: 150px;
    border-radius: 50%;
    border: 6px solid #EFB0C9;
    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;
}

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

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

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

.gift-img {
    background-image: url('images/gift-cover.jpg');
    background-size: cover;
    height: 400px;
    width: 400px;
    margin: 0 auto;

    border: 6px solid white;
    border-radius: 10px;
}

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

#happy-gif:hover {
    background-image: url('images/happy.gif');
}

#hot-gif:hover {
    background-image: url('images/hot.gif');
}

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

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

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

.footer {
    position: fixed;
    width: 100%;
    height: 80px;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    background: #EFB0C9;
}

.link {
    color: whitesmoke;
}

.credits {
    font-style: italic;
    padding-top: 10px;
}