@font-face {
    font-family: Comfortaa;
    src: url(fonts/Comfortaa/Comfortaa-VariableFont_wght.ttf);
} 


*{
    margin: 0;
    font-family: Comfortaa;
    color: #662400;
}

    body{
        background: url(../images/background.png) no-repeat center center fixed;
        background-size: cover;
    }

    h1{
        margin: 45px;
        font-size: 50px;
    }

    #presentationParagraph{
        width: 50%;
        margin-left: 8%;
        font-size: 20px;
    }

    #infoContainerVideo{
        display: none;
    }
        #videoPlayer{
            margin-bottom: 10px;
            border-radius: 15px;
            width: 100%;
        }

    .infoContainer{
        width: 40%;
        margin: 8%;
        margin-top: 5%;
        border-radius: 15px;
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }
        h2{
            display: flex;
            font-size: 30px;
            color: #B33F00;
            height: 65px;
            align-items: center;
            justify-content: center;
        }

        #linksContainer{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            grid-auto-rows: minmax(120px, auto);
        }
            #link{
                background-color: #662400;
                color: #FF6B1A;
                text-decoration: none;
                border: solid 3px #662400;
                font-weight: 900;
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                font-size: 22px;
            }
                #link:hover{
                    transition: 0.3s;
                    background-color: #FF6B1A;
                    color:#662400;
                }
                #link p{
                    color: #FF6B1A;
                    font-weight: 400;
                    font-size: 16px;
                    text-align: center;
                    width: 80%;
                }
                    #link:hover p{
                        transition: 0.3s;
                        color:#662400;
                    }
            .one{
                grid-column: 1;
                grid-row: 1;
                border-radius: 5px;
                border-top-left-radius: 15px;
                margin: 10px;
                margin-bottom: -2px;
                margin-right: -2px;
            }
            .two{
                grid-column: 2;
                grid-row: 1;
                border-radius: 5px;
                border-top-right-radius: 15px;
                margin: 10px;
                margin-bottom: -2px;
                margin-left: -2px;
            }
            .three{
                grid-column: 1;
                grid-row: 2;
                border-radius: 5px;
                border-bottom-left-radius: 15px;
                margin: 10px;
                margin-top: -2px;
                margin-right: -2px;
                cursor: not-allowed;
            }
            .four{
                grid-column: 2;
                grid-row: 2;
                border-radius: 5px;
                border-bottom-right-radius: 15px;
                margin: 10px;
                margin-top: -2px;
                margin-left: -2px;
            }

        #videoSeparator{
            width: 50%;
            height: 2px;
            background-color: #662400;
        }

        #videoLink{
            background-color: #662400;
            color: #FF6B1A;
            font-size: 22px;
            margin: 20px;
            padding: 12px 22px;
            border: solid 3px #662400;
            border-radius: 12px;
        }
            #videoLink:hover{
                cursor: pointer;
                transition: 0.3s;
                color: #662400;
                background-color: #FF6B1A;
            }

    #imageContainer{
        height: 100%;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
    }

        #imagePresentation{
            max-width: 400px;
            max-height: 80%;
            position: fixed;
            right: 5%;
            border-radius: 14px;
            box-shadow: #c9c9c980 0px 0px 10px 10px;
        }