body {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 0.5s ease-in-out;
    background-color: black;
    height: 100vh;

    --waza-conda-red: #E20613;
}

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 100%;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-color: black;

    @media screen and (max-width: 768px) {
        height: 100%;
        width: unset;
        min-width: unset;
    }

    @media screen and (min-width: 1200px) {
        min-width: 100%;
        min-height: 100%;
        height: auto;
    }
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
    font-weight: bold;
    padding: 0.5rem;
}

.copy-continue {
    padding-top: 0;
    margin-top: -10px;
}

.link-logo {
    height: auto;
    width: 45px;
    margin-right: 0.5rem;
}

#logo {
    height: auto;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: bold;
}

#title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: black;
}

#subtitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: black;
}

#links {
    text-align: center;
    color: var(--waza-conda-red);
    font-size: 32px;
    font-weight: 700;
}

#links a {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 20px;
    text-decoration: none;
    color: var(--waza-conda-red);
    --icon-color: var(--waza-conda-red);
}

#links a:hover {
    color: var(--waza-conda-red);
    text-decoration: underline;
}

#block {
    text-align: center;
    background-color: rgba(255,255,255,0.7);
    width: 50vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

@media only screen and (max-width: 800px) {
    #block {
        width: 90vw;
    }
}
