/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */

body {
    background: #050505;
    color: #ffffff;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

/* MAIN CONTAINER */

.container {
    width: 100%;
    padding: 40px;
}

/* HERO SECTION */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LOGO */

.logo {
    width: 100%;
    max-width: 320px;
    height: auto;

    display: block;

    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.015);
}

/* SUBTITLE */

.subtitle {
    margin-top: 28px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.35em;
    text-transform: uppercase;

    opacity: 0.55;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .container {
        padding: 24px;
    }

    .logo {
        max-width: 240px;
    }

    .subtitle {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
}