body {
    font-family: Arial, sans-serif;
    background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}
.container {
    max-width: 600px;
}
h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}
p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}
.footer {
    margin-top: 2em;
    font-size: 0.8em;
    color: #ddd; /* Light color for footer text */
}
.address {
    margin-top: 1.5em;
    font-size: 1em;
    color: #eee; /* Lighter color for address text */
}
.social {
    margin-top: 1.5em;
    font-size: 1.2em;
}
.social a {
    color: #ffffff; /* White color for the link */
    text-decoration: none;
}
.social a:hover {
    text-decoration: underline;
}