/* Lovely Froge CSS Styles */

body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #2e7d32;
    padding: 20px;
    margin: 0;
}

header {
    background-color: #81c784;
    text-align: center;
    padding: 10px;
    font-size: 2em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #558b2f;
    text-shadow: 1px 1px #aecb4f;
}

p {
    line-height: 1.6;
}

a {
    color: #33691e;
    text-decoration: none;
    border-bottom: 2px dashed #7cb342;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #aed581;
    text-align: center;
    padding: 10px;
    font-size: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}

button {
    background-color: #66bb6a;
    border: none;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #338a3e;
}