/*
 * Styles for the body
 */
body {
    text-align: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(45deg, #eecda3, #ef629f);
    font-family: 'Coda', cursive;
}

h1 {
    font-size: 2em;
}

header a {
    text-decoration: none;
    border: none;
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    color: #141214;
    background-color: #02ccba;
    padding: 15px 32px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    border-radius: 10px;
}
/*
 * Styles for the footer
 */

footer {
    text-align: center;
    background-color: black;
    color:white;
    width: 100%;
    padding-bottom: 1px;
    padding-top: 1px;
    position: static;
    font-size: 16px;
}

footer p{
    padding-left: 5px;
    padding-right: 5px;
}

/*
 * Styles for the Instruction Page
 */
.instructionMain{
    text-align: left;
    padding:20px;
    font-size: 18px;
} 