
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('background.webp') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    color: white;
    max-width: 80%;
}

h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

p {
    font-size: 1.5em;
}
.logo {
    width: 150px; /* adjust this as needed */
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
}
.overlay {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* instead of center */
    padding-top: 80px; /* add top spacing */
}
.contact-email {
    margin-top: 40px;
    font-size: 1.2em;
}

.contact-email a {
    color: #ffffff;
    text-decoration: underline;
}