/* Froge Style Sheet */

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

h1, h2, h3 {
    text-align: center;
    color: #004d40;
}

a {
    color: #00796b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

button {
    background-color: #004d40;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

button:hover {
    background-color: #00796b;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #004d40;
    color: white;
}

.froge-emoji {
    font-size: 2em;
}  

/* Add more styles to make your froge page awesome and ribbiting! */