:root {
    --brand: #ef6a00;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "sarvatrik-latin-variable", sans-serif;
    font-variation-settings: 'wght' 400;
    margin: 0;
    padding: 1.5rem;
    display: grid;
    place-items: center;
    min-height: 100dvh;
    background: #00000b;
    color: #fff
}

h1 {
    font-family: "kallisto", sans-serif;
    font-weight: 700;
    margin: 3rem 0;
    font-size: 3rem;
    color: var(--brand);
}

a {
    color: #fff;
    text-decoration: none;
}

p {
    font-size: 1.75rem;
    margin: 0;
}

/* p a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
} */

strong {
    font-variation-settings: 'wght' 700;
}

i {
    color: var(--brand);
    margin-inline-end: 0.5rem;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

#os-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: -100px;
    z-index: -1;
}

#os-bg a {
    display: none !important;
}

.logo {
    max-width: 30rem;
    margin-inline: auto;
}

.card {
    position: relative;
    max-width: 55rem;
    width: 100%;
    background: url('../img/dots-card.png') no-repeat center center rgba(21, 25, 36, 0.9);
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .3);
    padding: 3rem;
    text-align: center;
}

/* .card::before {
    position: absolute;
    top: -25px;
    left: 125px;
    width: 200px;
    height: 200px;
    background: var(--brand);
    border-radius: 50%;
    filter: blur(50px);
    content: '';
    z-index: -1;
}

.card::after {
    position: absolute;
    bottom: -25px;
    right: 125px;
    width: 200px;
    height: 200px;
    background: var(--brand);
    border-radius: 50%;
    filter: blur(50px);
    content: '';
    z-index: -1;
} */

.top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}




@media screen and (max-width:768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .field+.field {
        margin-block-start: 1rem;
    }

    .field span {
        display: block;
    }
}