body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    background-color: #e0ffe0;
    color: #4b4b4f;
}

header {
    background-color: #8fbc8f;
    text-align: center;
    padding: 10px;
}

h1 {
    color: #2e8b57;
}

a:link {
    color: #2e8b57;
}

a:visited {
    color: #4682b4;
}

a:hover {
    color: #32cd32;
}

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

button {
    background-color: #32cd32;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
}

button:hover {
    background-color: white;
    color: #32cd32;
    border: 2px solid #32cd32;
}