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

h1 {
    color: #004d40;
    text-align: center;
    font-size: 3em;
    margin-top: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    padding: 0 15%;
    text-align: justify;
}

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

a:hover {
    text-decoration: underline;
}

button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

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

.froge-logo {
    width: 200px;
    display: block;
    margin: 0 auto;
}

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

footer a {
    color: #80cbc4;
}