body {
    main {
        #cover {
            width: 100%;
            height: 93dvh;
            position: relative;

            #cover-background {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            #cover-content-background {
                background-color: var(--background-secondary-75a);
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            #cover-content {
                position: absolute;
                top: 50%;
                left: 15%;
                width: 50%;
                transform: translateY(-50%);
                /*border: 1px solid #FF0000;*/

                h1, h2, h3, h4, p {
                    color: var(--paragraph-secondary);
                }

                h1 {
                    font-size: 5em;
                }

                p {
                    font-size: 1.5em;
                    max-width: 60%;
                }

                #cover-content-buttons {
                    margin-top: 2.5%;
                    width: 100%;
                    display: flex;
                    align-items: center;
                }

                @media screen and (max-width: 1200px) {
                    left: 10%;
                    width: initial;

                    p {
                        max-width: 100%;
                    }
                }

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

                @media screen and (max-width: 767px) {
                    left: 2%;

                    h1 {
                        font-size: 3.25em;
                    }

                    p {
                        font-size: 1.2em;
                    }
                }

                @media screen and (max-width: 480px) {
                    h1 {
                        font-size: 2.5em;
                    }

                    p {
                        font-size: 1em;
                        max-width: 90%;
                    }

                    #cover-content-buttons {
                        margin-top: 5%;
                        flex-direction: column;
                        align-items: flex-start;
                    }
                }
            }
        }
    }
}