@font-face {
    font-family: 'QuadratSerial-Light';
    src: url('https://futuis.com/fonts/quadrat-serial-light.ttf') format('truetype');
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'QuadratSerial-Light', sans-serif;
    color: #FFF; /* Set font color to white */
    letter-spacing: 2px; /* Set global letter spacing */
    background: #31323e; /* Set background to solid color */
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically for all devices */
    min-height: 100vh; /* Ensure body takes at least the viewport height */
}

.content {
    text-align: center;
    padding-top: 25px;
    width: 100%;
    display: flex; /* Use flex to allow child elements to be centered */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    flex: 1; /* Allow content to grow and fill available space, aiding in centering */
}

.logo {
    width: 250px;
    margin-bottom: 0px;
    margin: auto; /* Add auto margin to vertically center in the flex container */
}

.coming-soon {
    font-size: 24px;
    text-transform: uppercase;
}

footer {
    text-align: center;
    font-size: 18px;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none; /* Remove the semi-transparent background */
}

@media (min-width: 768px) {
    body {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    .content {
        order: 2;
    }

    .logo {
        width: 300px;
    }

    .coming-soon {
        font-size: 36px;
    }
}
