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

html,
body {
    min-height: 100dvh;
    font-size: 16px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding-top: clamp(8rem, 10vw, 12rem);
    font-family: Helvetica, Tahoma, Verdana, Arial, system-ui, sans-serif;
    font-weight: normal;
    color: #081C32;


    &::before {
        content: "";
        position: fixed;
        inset: -10px;
        background: url(../../images/bg-720.png) no-repeat center top / cover;
        filter: blur(0px) brightness(0.5);
        z-index: -1;
    }
}

@media screen and (min-width: 720px) {
    body {
        &::before {
            background-image: url(../../images/bg-1152.png);
        }
    }
}

@media screen and (min-width: 1024px) {
    body {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        padding: 5rem;


        &::before {
            filter: blur(0px) brightness(0.5);
        }
    }
}

@media screen and (min-width: 1980px) {
    body {
        &::before {
            background-image: url(../../images/bg-1984.png);
        }
    }
}

@media screen and (min-width: 2860px) {
    body {
        &::before {
            background-image: url(../../images/bg-2900.png);
        }
    }
}

a {
    color: rgb(246, 16, 127);
}

.logo {
    display: inline-block;


    &.logo--jvw {
        max-width: 12rem;
    }


    &.logo--fto {
        max-width: 4rem;
    }
}

.icon {
    display: inline-block;
    width: 1rem;
    height: auto;
} 

.title {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.text-light {
    color: #666;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 4rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: rgb(246, 16, 127);
    border-radius: 4px;
    box-shadow: 0 0 0 0 rgba(246, 16, 127, .3), 0 0 0 16px rgba(246, 16, 127, 0);
    transition: box-shadow .4s, background-color .3s;


    &:hover,
    &:focus {
        box-shadow: 0 0 0 4px rgba(246, 16, 127, .3), 0 0 0 16px rgba(246, 16, 127, 0);
    }


    .icon {
        width: auto;
        height: 1.25rem;
    }
}

.card {
    width: min(768px, 95vw);
    min-height: 60dvh;
    padding: clamp(2rem, 4vw, 4rem);
    hyphens: auto;
    background: #f7f7f7;
    border: 2px solid #fff;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    box-shadow: 0 -.25rem .25rem .5rem rgba(0, 0, 0, 0.25);


    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }


    p {
        margin-bottom: 1rem;
        line-height: 1.4;


        .icon {
            margin-right: .5rem;
            transform: translateY(2px);
        }
    }

    hr {
        margin: 2rem 0;
        color: #f7f7f7;
    }


    .button {
        margin-top: 3rem;
    }
}

@media screen and (min-width: 1024px) {
    .card {
        min-height: 0;
        border-radius: 1rem;
    }
}