body {
    font-family: sans-serif;
    text-align: center;
    background-image: url('office.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.waitlist {
    margin-top: 30px;
}

.waitlist input[type="email"] {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.waitlist button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.waitlist button:hover {
    background-color: #45a049;
}

h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px #000000;
}

h2 {
    text-shadow: 2px 2px 4px #000000;
}

p {
    text-shadow: 2px 2px 4px #000000;
} 