body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* background-color: #f0f0f0; */
    background-color: black;
    color: #999;
}

.header-wrapper {
    text-align: left;
    width: 80%;
    max-width: 960px;
    line-height: 3rem;
}

h1, .subtitle { 
    font-family: 'Teko', sans-serif;
}

h1 {
    color: #CCFF00;
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
    width: 80%;
    max-width: 960px;
    margin-bottom: 0rem;
    margin-block-start: 0rem;
}

.subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
    text-align: left;
    width: 80%;
    max-width: 960px;
    margin-block-start: 0rem;
}

.container {
    text-align: center;
    padding: 20px;
    /* background-color: whitesmoke; */
    border: #777 1px solid;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 960px;
    width: 80%;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.coming-soon {
    font-size: 12px;
    font-style: italic;
    /* color: #777; */
    color: #CCFF00;
}

footer {
    font-size: 10px;
    text-align: center;
    color: #777;
}