/* Reset some default styles */
body,
h1,
h2,
p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
}

header {
    background-color: #1976D2;
    color: #fff;
    padding: 20px;
}

h1 {
    font-size: 36px;
}

main {
    margin: 20px;
}

.intro,
.waitlist {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.waitlist div {
    margin: 0 auto;
}

.history h2 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.history p {
    text-align: left;
    margin-bottom: 20px;
}

footer {
    background-color: #1976D2;
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .intro {
        margin: 10px;
    }
}

/* Add more custom styles as needed */