body {
    background: #008000;
    width: 525px;
    margin: 0 auto;
}
header {
    background: #008000;
    padding: 30px;
}
h1 {
    color: dimgrey;
    font-family: lucida handwriting;
    text-align: center;
    margin: auto;
    padding: 10px 0 0 0;
    border-radius: 25px;
    background: #00e600;
    height: 50px;
    width: 350px;
}
h1:hover{
    animation: h1 1s forwards;
}
nav {
    background:#00e600;
    text-align: center;
    height: 50px;
    border-radius: 25px 25px 0 0;
    
}    
nav h2 {
    text-decoration: none;
    color: dimgrey;
    text-transform: uppercase;
    margin: auto;
    padding: 12.5px 0 0 0;
    display: inline-block;
    font-family: lucida handwriting;
    animation: navmouseout 1s;
}
nav h2:hover {
    color: dimgrey;
    background: lightgrey;
    height: 37px;
    width: 300px;
    border-radius: 15px 15px 0 0;
    margin: auto;
    animation: nav 1s forwards;
}
nav h2.active {
    background: #008000;
    color: #00e600;
}
main {
    background: lightgrey;
    padding: 30px;
    margin: auto;
    text-align: left;
}
main a{
    text-decoration: none;
    color: dimgrey;
    padding:5px 10px 5px 10px;
    margin: auto;
    font-family: Zen Dots;
    animation: mainmouseout 1s;
    border: 5px solid dimgrey;
    line-height: 50px;
}
main a:hover{
    color: #008000;
    animation: main 1s forwards;
}
main img {
    width: 100%;
}
footer {
    height: 50px;
    text-align: center;
    background: #00e600;
    border-radius: 0 0 25px 25px;
}
footer h2 {
    color: dimgrey;
    margin: auto;
    padding: 12.5px 0 0 0;
    font-family: lucida handwriting;
}
@keyframes nav{
    0%{
    height: 100%;
    width: 100%;
    border-radius: 25px 25px 0 0;
    }
    50%{
    color: lightgrey;
    background: lightgrey;
    border-radius: 50px 50px 0 0;
    }
    100%{
    color: #008000;
    border-radius: 15px 15px 0 0;
    }
}
@keyframes navmouseout{
    0%{
    color: lightgrey;
    background: lightgrey;
    border-radius: 15px 15px 0 0;
    height: 37.5px;
    width: 300px;
    }
    50%{
    color: lightgrey;
    background: lightgrey;
    height: 37.5px;
    border-radius: 50px 50px 0 0;
    }
    100%{
    color: dimgrey;
    background: #00e600;
    height: 37.5px;
    width: 100%;
    border-radius: 25px 25px 0 0;
    }
}
@keyframes main{
    0%{
    background: #00e600;
    border-radius: 100%;
    height: 100%;
    width: 100%;
    }
    50%{
    border-radius: 50px;
    }
    100%{
    background: #00e600;
    border-radius: 15px 15px 15px 15px;
    }
}
@keyframes mainmouseout{
    0%{
    background: #00e600;
    height: 100%;
    width: 100%;
    border-radius: 15px 15px 15px 15px;
    }
    25%{
    border-radius: 50px;
    }
    50%{
    border-radius: 100%;
    }
    100%{
    background: lightgrey;
    }
}
@keyframes h1{
    0%{
    height: 50px;
    width: 350px;
    border-radius: 25px;
    }
    50%{
    border-radius: 100%;
    }
    100%{
    border-radius: 25px;
    transform: rotate(360deg);
    }
}