@font-face {
    font-family: PlayfairDisplay;
    src: url(../../../fuente/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf) format('woff');
}

@font-face {
    font-family: helvetica;
    src: url(../../../fuente/helvetica/Helvetica.ttf) format('woff');
}

*{
    font-family: PlayfairDisplay;
    line-height: 1.4;
}

body{
    background-color: black;
}

.pointer:hover{
    cursor: pointer;
}

#corto{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    
    height: fit-content;
}

#header{
    color: red;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    
    align-items: center;
    margin-top: 5vh;
    width: 90vw;
    font-size: 32px;
}

#iconHeader{
    width: 50px;
}

#content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    color: white;
    width: 100%;
    height: 70vh;
}

#cortoVideo{
    width: 45vw;
    height: 45vh;
}

#curiosidades{
    color: white;
    height: fit-content;
    width: 40vw;
    text-align: center;
    font-family: helvetica;
}

@media only screen and (max-width: 1025px) {
    #content{
        flex-direction: column;
        height: fit-content;
    }
    
    #cortoVideo{
        width: 500px;
        max-width: 90vw;
        height: 90vh;
        max-height: 30vh;
        margin-bottom: 45px;
        margin-top: 15vh;
    }
    
    #curiosidades{
        height: fit-content;
        width: 90vw;
    }

    #titulo{
        max-width: 60vw;
    }

    #iconHeader{
        width: 40px;
    }
}