
body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 100%;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 32px;
}

.tagline {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    background-color: #333;
    border: none;
    color: white;
}

button {
    padding: 10px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}
