/* Lilypad Style Sheet */
body {
    background-color: #f0f8ff;
    font-family: 'Lily Script One', cursive;
    color: #333;
}

h1 {
    color: #006400;
    text-align: center;
}

p {
    line-height: 1.6;
    margin: 15px;
}

a {
    color: #006400;
    text-decoration: none;
}


a:hover {
    color: #00ff00;
}

.button {
    background-color: #4CAF50; /* Froge green */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12px;
}

.button:hover {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f0f8ff;
    color: #333;
    font-size: 14px;
}