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

h1, h2, h3 {
    color: #008000;
    text-shadow: 2px 2px #b3ffb3;
}

a {
    color: #00b300;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.froge-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('/froge-pattern.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.button {
    background-color: #66ff66;
    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: 12px;
}

.button:hover {
    background-color: #33cc33;
}

.froge-box {
    border: 2px solid #00cc00;
    border-radius: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

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