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

h1 {
    font-size: 3em;
    text-align: center;
    color: #00897b;
}

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

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

.froge-link {
    color: #004d40;
    text-decoration: none;
}

.froge-link:hover {
    color: #00796b;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #004d40;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
}