body {
    background-color: #E0F7FA;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #004D40;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #00796B;
    text-align: center;
    margin-top: 20px;
}

a {
    color: #00695C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004D40;
}

nav {
    background-color: #004D40;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    display: block;
    padding: 15px;
    font-weight: bold;
    color: #FFFFFF;
}

footer {
    background-color: #00796B;
    text-align: center;
    padding: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #FFFFFF;
}

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

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

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

.froge-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.froge-content img {
    width: 150px;
    height: auto;
}

.froge-content p {
    max-width: 600px;
    text-align: center;
    margin-top: 20px;
}