body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black; /* Black background */
    color: white; /* White text */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-height: 100vh;
}

.logo img {
    width: 452px; /* Adjust the size as needed */
    height: auto;
}

/* Apply monospace font to both the logo alt text and quote */
.container, .quote {
    font-family: 'Courier New', Courier, monospace;
}

.quote {
    margin-top: 20px; /* Space between logo and quote */
    font-size: 18px;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}
