* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;  /* Changed to black */
    color: #ffffff;            /* Changed to white */
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contact {
    font-size: 1em;
}

a {
    color: #66b3ff;           /* Lighter blue for visibility on black */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}