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

h1, h2, h3 {
    font-family: 'FrogeFont', sans-serif;
    color: #388e3c;
    text-align: center;
}

a {
    color: #81c784;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #66bb6a;
}

button {
    background-color: #66bb6a;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition-duration: 0.4s;
}

button:hover {
    background-color: #4caf50;
    color: white;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #4caf50;
    border-radius: 4px;
    resize: vertical;
}

input[type="submit"] {
    background-color: #388e3c;
    color: white;
    border: none;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

input[type="submit"]:hover {
    background-color: #66bb6a;
}