/* Import Bebas Neue Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Reset & Global Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Main Container (Flexbox for Layout) */
.main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

/* Logo */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 5px; /* Reduced spacing under logo */
}

/* Headings */
h1 {
    font-size: 36px;
    text-transform: uppercase;
    margin: 0; /* Remove default margin */
    padding: 0;
}

/* Subtext */
.subtext {
    font-size: 18px;
    line-height: 1.4;
    max-width: 600px;
    margin: -20px 0 10px; /* Reduced space between motto and sign-up form */
}

/* Sign-Up Form */
.signup-form {
    margin-top: 10px; /* Ensures it stays close to the subtext */
}

/* Footer (Fix to Bottom) */
footer {
    background-color: black;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer a {
    color: #22ee22;
    text-decoration: none;
    margin: 0 10px;
}

footer p {
    font-size: 12px;
    color: #aaaaaa;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .subtext {
        font-size: 16px;
    }
}
