body{
    text-align: center;
    font-family: "Happy Monkey", cursive;
    background: linear-gradient(#a2d2ff,#efb0c9);
    color: #ffffff;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#profile{
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 6px solid #efb0c9;
    background-size: cover;
}
h1,h2,h3,h4,p{
    text-shadow: 0px 0px 1px #000;
}

#bday-age{
    background-color: #efb0c9;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 10px 0 10px 0
}
#bday-date{
    background-color: #efb0c9;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0
}
.gift-section{
    margin-top: 50px;
}
.gw{
    background-image: url(images/giftwrap.png);
    background-size: cover;
    width: 400px;
    height: 400px;
    border: 6px solid white;
    border-radius: 10px;
    margin: 0 auto;
    transition: background-image 0.3s ease;
}
#gw1:hover{
    background-image: url(images/happy.gif);
}
#gw2:hover{
  background-image: url(images/hot.gif);
}
#gw3:hover{
  background-image: url(images/genius.gif);
}
#gw4:hover{
  background-image: url(images/badass.gif);
}
#gwcheers{
    height: 200px;
}
#gwcheers:hover{
    background-image: url(images/cheers.gif);
}
  
.title{
    margin-bottom: 10px;
}
.hint{
    margin-top: 0px;
}
.link{
    color: #fff;
}
p{
    width: 400px;
    margin: 40px auto 20px auto;
    font-style: italic;
}


@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
        padding: 0 10px;
    }
    
    #profile {
        width: 100px;
        height: 100px;
        border: 4px solid #efb0c9;
    }
    
    h2, #bday-age {
        font-size: 1.2em;
    }
    
    h4, #bday-date {
        font-size: 1em;
    }
    
    .title {
        font-size: 1.2em;
        padding: 0 15px;
    }
    
    .hint {
        font-size: 0.9em;
    }
    
    .gw {
        width: 280px;
        height: 280px;
        border: 4px solid white;
    }
    
    #gwcheers {
        height: 140px;
    }
    
    .gift-section {
        margin-top: 35px;
    }
    
    p {
        font-size: 0.9em;
        margin: 30px auto 20px auto;
    }
}

/* Very small mobile devices (360px and below) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.3em;
    }
    
    .gw {
        width: 240px;
        height: 240px;
    }
    
    #gwcheers {
        height: 120px;
    }
    
    .title {
        font-size: 1.1em;
    }
}

