@import url("/?originalUrl=https%3A%2F%2Ffonts.googleapis.com%2Fcss2%3Ffamily%3DInter%3Awght%40100%3B200%3B300%3B400%3B500%3B600%3B700%3B800%3B900%26display%3Dswap");

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin-top: 3%;
    font-family: "Inter", sans-serif;
    background-color: #ea612a;
    transition: 0.5;
    display: flex;
    flex-direction: column;
}

.preload-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ea612a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-in 1.8s forwards;
}

.load-h1 {
    font-size: 96px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 6.4px;
    position: absolute;
    margin-bottom: 10rem;
}

.load-h1 span {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    animation: fadeOut 0.5s ease-in 0.8s forwards;
    /* Aplica la animación de fade out durante 0.5 segundos después de una espera de 0.8 segundos */
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Estilos para el contenido principal de tu sitio web */
.content {
    /* Estilos para el contenido principal de tu sitio web */
    display: none;
    /* Ocultar el contenido hasta que la pantalla de carga desaparezca */
}

.mobile-h1 {
    display: none;
}

@media screen and (max-width: 767px) {
    body {
        background-color: #ea612a;
    }


    .navbar {
        display: none;
    }

    .preload-screen {
        display: none;
    }

    .mobile-h1 {
        display: flex;
        text-align: center;
        margin-top: 50%;
        font-weight: 500;
    }

    .contenedor-exp {display: none;}
    .about {display: none;}
    .contenedor-intro-text {display: none;}
    .enlacesInside {display: none;}
    .contenedor-about {display: none;}
}

