body {
    background-color: lightblue;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
}

h1 {
    color: darkblue;
}

p {
    color: black;
    font-size: 18px;
}

a {
    display: inline-block;
    margin-top: 20px;
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: red;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
}