body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #e0ffe0;
    color: #2d572c;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #205723;
    text-align: center;
    text-shadow: 1px 1px 2px #aac9b0;
}

a {
    color: #4d8c5f;
    text-decoration: none;
}

a:hover {
    color: #72b090;
    text-decoration: underline;
}

button, input[type="submit"] {
    background-color: #4d8c5f;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover, input[type="submit"]:hover {
    background-color: #3e754e;
}

.froge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.froge-image {
    width: 150px;
    height: 150px;
}

.froge-message {
    font-size: 1.5em;
    margin-top: 20px;
}