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

header {
    background-color: #8FBC8F;
    padding: 10px;
    text-align: center;
    font-size: 2em;
    color: white;
}

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

a {
    color: #008B8B;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.froge-button {
    background-color: #32CD32;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.froge-button:hover {
    background-color: #228B22;
}

.container {
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}