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

h1, h2, h3 {
    color: #004d40;
}

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

a:hover {
    text-decoration: underline;
}

header {
    background-color: #004d40;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

nav a {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #00796b;
    color: #ffffff;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #004d40;
}

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

button {
    background-color: #00796b;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.froge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.froge img {
    width: 100px;
    height: auto;
    margin: 10px;
}

.froge-description {
    text-align: center;
    font-size: 18px;
    color: #00796b;
}

.froge-description p {
    margin: 5px 0;
    padding: 0 10px;
}