/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Montserrat:wght@800&family=Roboto+Mono:wght@500&display=swap');
@font-face {
    font-family: 'fasthand';
    src: url(../../fonts/FastHand.otf) format("opentype");
}

/* STYLE */
:root{
    --background: #000000;
    --text: black;
    --primary: #85b1d6;
    --secondary: #b6d1e7;
    --accent: #346e9d;
}

*{
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}
body{
    background-color: var(--background); 
    color: var(--text); 
}

h1{
    font-size: 120px;
    font-family: 'fasthand';
    color: var(--primary);
}
h2{
    font-size: 50px;
    color: var(--secondary);
}
p{
    font-size: 20px;
    color: var(--secondary);
}

.subtitle{
    color: var(--secondary);
}
#hr-top{
    width: 50%;
    color: black;
}
#hr-bot{
    width: 25%;
    color: black;
}

.title{
    padding: 1%;
}
.Portada h1{
    color: black;
}

.h-xxl{
    height: 125vh;
}
.h-xl{
    height: 100vh;
}
.h-l{
    height: 75vh;
}
.h-m{
    height: 50vh;
}
.h-s{
    height: 25vh;
}

.large h1{
    font-size: 100px;
}

.Portada{
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.background{
    width: 100%;
    overflow: hidden;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: -1;
    filter: blur(5px);
}
.background .gif-back{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.background .gif{
    width: 33.3%;
}
.background #black{
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.cuerpo{
    width: 100%;
    padding: 1%;
}
.f-row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.f-column{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
}
.column{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.column img{
    width: 90%;
}

.carousel{
    width: 90%;
    border: 2px double var(--accent);
    border-radius: 10px;
    padding: 5px;
}

.card{
    margin: 2%;
    width: 90%;
    padding: 1%;
    background: rgba(255, 255, 255, 0.7);
}
.card p{
    color: black;
}
.card-s{
    width: 250px;
    padding: 2px;
}
.card-m{
    width: 450px;
    padding: 5px;
}
.card-l{
    width: 650px;
    padding: 7px;
}
.card-xl{
    width: 850px;
    padding: 10px;
}
.card-xxl{
    width: 1000px;
    padding: 10px;
}

.border-rounded{
    border: 2px white double;
}
.card .li-icon{
    width: 20px;
}
.card .ul-icon{
    list-style: none;
}

.features{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.features h1{
    font-size: 30px;
    color: black;
}
.features h2{
    font-size: 30px;
    color: black;
}
.features p{
    font-size: 20px;
}

.old ul{
    display: none;
}
.old div:hover ul{
    display: block;
}

@media screen and (max-width: 578px) {
    h1{
        font-size: 14vw;
    }
    p{
        font-size: 15px;
    }
    .large h1{
        font-size: 15vw;
    }
    .cuerpo{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .column{
        width: 90%;
    }
}