/* Welcome to the Daily Hop Stylesheet */
/* Hop around with these frogetastic styles! */

body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive;
    color: #00695c;
    margin: 0;
    padding: 0;
}

header {
    background-color: #00796b;
    color: white;
    padding: 1em;
    text-align: center;
    border-bottom: 5px solid #004d40;
}

h1 {
    font-size: 2.5em;
    margin: 0.5em 0;
    text-shadow: 2px 2px #004d40;
}

nav {
    margin: 20px;
    text-align: center;
}

nav a {
    color: #004d40;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #80cbc4;
}

main {
    padding: 20px;
    text-align: justify;
}

footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    border-top: 5px solid #00796b;
}

.button {
    background-color: #80cbc4;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12px;
}

.button:hover {
    background-color: #004d40;
    color: white;
}

.froge {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: auto;
}