body {
    background-color: #f0f8ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
}

h1 {
    color: #2e8b57;
    text-align: center;
    font-size: 2.5em;
    margin-top: 20px;
    text-shadow: 2px 2px #ffffff;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 20px;
}

a {
    color: #4682b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6a5acd;
}

button {
    background-color: #32cd32;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #228b22;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #2e8b57;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
}