* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Sora, sans-serif
}

body {
    min-height: 100vh;
    background: #060223;
    overflow: hidden;
}

.alert-video {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.alert-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .95), rgba(0, 0, 0, .7), rgba(0, 0, 0, .4), rgba(0, 0, 0, .1));
}

#language-alert {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8vw;
}

.language-box {
    max-width: 400px;
    width: 90%;
    background: #2f7acf;
    background: linear-gradient(to right top, #144f92, #1a579d, #1f5fa8, #2467b4, #296fbf, #2972c5, #2875cc, #2878d2, #2276d5, #1d74d7, #1772da, #1270dc);
    
    padding: 2.5rem 2rem;
    border-radius: 20px;
}

.logo img {
    width: 120px
}

.language-box h2 {
    color: #fff;
    font-size: 2rem
}

.language-box p {
    color: #ddd;
    font-size: .9rem;
    margin: 1rem 0
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.language-buttons button {
    padding: .8rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: #28b21b;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.language-buttons button:hover {
    background: #004fd8;
    transform: scale(1.05);
}

/* MOBILE */
@media screen and (max-width:768px) {
    #language-alert {
        justify-content: center;
        padding: 0
    }

    .alert-video::after {
        display: none
    }
}