/* Froge Ocean Style Sheet */
body {
    background-color: #e0f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #006064;
}

h1, h2, h3 {
    color: #004d40;
    text-align: center;
}

a {
    text-decoration: none;
    color: #00796b;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #004d40;
}

.button {
    background-color: #00796b;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

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

.froge {
    position: relative;
    margin: 20px auto;
    width: 100px;
    height: 100px;
    background: url('/assets/froge-illustration.svg') no-repeat;
    background-size: contain;
}

.footer {
    background-color: #004d40;
    color: white;
    padding: 10px 0;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .button {
        font-size: 14px;
        padding: 8px 16px;
    }
}