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

h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #00695c;
}

a {
    color: #009688;
    text-decoration: none;
}

button {
    background-color: #81c784;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.froge-icon {
    width: 50px;
    height: 50px;
    background-image: url('/images/froge.svg');
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

nav {
    background-color: #004d40;
    padding: 1em;
    width: 100%;
    display: flex;
    justify-content: center;
}

nav a {
    margin: 0 15px;
    color: #e0f7fa;
    font-weight: bold;
}

footer {
    background-color: #004d40;
    color: #e0f7fa;
    padding: 1em;
    text-align: center;
    width: 100%;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }
}