@font-face {
    font-family: Michroma;
    src: url('/fonts/Michroma.ttf');
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(5,10,15,.60),
            rgba(5,10,15,.70)
        ),
        url('/img/background.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #e6e6e6;
    font-family: Michroma, Arial, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6e6e6;
    font-family: Michroma, Arial, sans-serif;

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

.container {
    text-align: center;
    padding: 40px;
    transform: translateY(-80px);
}    

.logo {
    font-size: 48px;
    letter-spacing: 8px;
    margin-bottom: 25px;
}

.logo img {
    width: 220px;
    max-width: 70vw;
    height: auto;
    display: block;
    margin: 0 auto;
    /* filter: drop-shadow(0 0 20px rgba(0,200,255,.35)); */
}

.domain {
    margin-top: 15px;
    font-size: 20px;
    letter-spacing: 10px;
    opacity: .8;
}

.subtitle {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    opacity: .7;
    font-size: 14px;
}

.card {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    transform: translateY(130px);
}