@font-face{
    font-family: raleway;
    src: url(../fonts/Raleway/Raleway-Regular.ttf);
}

@font-face{
    font-family: ralewayMedium;
    src: url(../fonts/Raleway/Raleway-Medium.ttf);
}

@font-face{
    font-family: ralewayBlack;
    src: url(../fonts/Raleway/Raleway-Black.ttf);
}



*::selection {
    background-color: gray;
}

body{
    background-color: #e6e6e6;
    overflow: hidden;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.loadName, .lastname {
    font-size: 30px;
    margin: 5px;
    opacity: 1;
    transition: opacity 1s ease-in-out; /* Agregamos una transición de opacidad */
}


.titleDiv{
    z-index: 20;
    height: 30%;
    pointer-events: none;
}

.name{
    font-size: 60px;
}

.subtitle{
    font-size: 16px;
    font-family: ralewayMedium;
}

.smallText1{
    font-size: 13px;
    font-family: Arial !important;
}

.smallText2{
    font-size: 12px;
    font-family: Arial !important;
}

.smallText3{
    font-size: 11px;
    font-family: Arial !important;
}

.ralewayFont{
    font-family: raleway;
}

.boldFont{
    font-family: ralewayBlack;
}

.mediumFont{
    font-family: ralewayMedium;
}

.playButton{
    z-index: 10;
}

.bg-image{

    background-repeat: no-repeat; /* Evita la repetición de la imagen */
    background-size: 120% 255%;
    background-position: -35vw 30%;
    transition: background-image 7s ease-in-out;
    
}


/*Cambia el color del texto dependiendo del color de fondo*/
.textColor {
    filter: invert(1);
    mix-blend-mode: difference;
  }

.navElement{
    pointer-events: all;
}

.links{
    color: black;
    text-decoration: none;
    font-family: ralewayBlack;
    transition: color .7s;
}

.links:hover{
    color: rgb(141, 141, 141);
    transition: color .7s;
}


#grain::before{
    z-index: -1;
}

.hiddenDiv{
    visibility: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

::-webkit-scrollbar {display: none;}

.divScroll{
    overflow-y: scroll;
    padding-top: 170px;
}

.gelleryDiv{
    padding-top: 15px !important;
}

.footer{
    font-size: 12px;
}

.vh-90{
    height: 95vh;
}

.vh-5{
    height: 4vh;
}

.imgHover{
    transition: filter 0.4s;
}

.imgHover:hover{
    filter: brightness(1.5);
    transition: filter 0.4s;
}



@media (max-width: 767px) {
    .name {
        font-size: 30px;
    }

    .subtitle{
        font-size: 10px;
    }

    .divFechas{
        display: block !important;
        margin-bottom: 30px;
    }

    .pFecha{
        padding: 0px !important;
    }

    .navElement{
        font-size: 14px;
    }

    .description{
        font-size: 13px;
    }
  }