main {
    #content {
        position: relative;
        width: 100%;
        height: 100dvh;

        video {
            background-color: var(--background);

            position: absolute;
            top: 0;
            left: 0;

            width: 100%;
            height: 100%;

            object-fit: cover;
            object-position: center;

            background-size: cover;

            transition: opacity .5s ease;
        }

        #cover {
            position: absolute;
            top: 0;
            left: 0;

            width: 100%;
            height: 100%;
            background-color: #00031675;

            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;

            #text {
                text-align: center;
                width: 100%;
                height: 40%;
                /*border: 1px solid #FF0000;*/
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                h1 {
                    font-size: 5rem;

                    @media screen and (max-width: 979px) {
                        font-size: 4rem;
                    }

                    @media screen and (max-width: 767px) {
                        font-size: 2.75rem;
                    }

                    @media screen and (max-width: 480px) {
                        font-size: 2.25rem;
                    }
                }

                h2 {
                    font-size: 2rem;
                    color: #FFFFFF;

                    @media screen and (max-width: 767px) {
                        font-size: 1.75rem;
                    }

                    @media screen and (max-width: 480px) {
                        font-size: 1.25rem;
                    }
                }

                h3 {
                    font-size: 2rem;
                    color: #FFFFFF;
                }

                #headLanguages {
                    margin-top: 2%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 5vh;
                    width: 75%;

                    @media screen and (max-width: 600px) {
                        margin-top: 3%;
                    }

                    h3 {
                        font-size: 1.65rem;
                        color: #FFFFFF;

                        @media screen and (max-width: 767px) {
                            font-size: 1.5rem;
                        }

                        @media screen and (max-width: 480px) {
                            font-size: 1rem;
                        }
                    }

                    .languageIcon {
                        aspect-ratio: 1/1;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin: 0 .5%;

                        img {
                            aspect-ratio: 1/1;
                            height: 75%;
                        }

                        @media screen and (max-width: 480px) {
                            margin: 0 1.5%;
                        }
                    }

                    @media screen and (max-width: 480px) {
                        height: 4vh;
                    }
                }
            }

            #backgroundButtons {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                p {
                    font-size: 1.2rem;
                    color: #FFFFFF;

                    @media screen and (max-width: 480px) {
                        font-size: 1rem;
                    }
                }

                #buttons {
                    margin-top: 1%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 6vh;

                    .button {
                        aspect-ratio: 1/1;
                        height: 100%;
                        padding: 1%;
                        background-color: var(--primary55);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin: 5%;

                        transition: .5s ease;

                        p {
                            font-family: maroco;
                            font-size: 1rem;
                            color: #FFFFFF;
                        }

                        &:hover {
                            background-color: var(--primary);
                            cursor: default;
                        }
                    }

                    &:hover {
                        .button {
                            &:not(:hover) {
                                opacity: 0.5;
                            }
                        }
                    }

                    @media screen and (max-width: 480px) {
                        width: 80%;
                        flex-wrap: wrap;
                    }
                }
            }
        }

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