/* 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: 'ka1';
    src: url(../../fonts/ka1.ttf) format("opentype");
}
@font-face {
    font-family: 'Positive System';
    src: url(../../fonts/PositiveSystem.otf) format("opentype");
}

/* STYLE */
*{
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}
body{
    background-color: #131313; 
    color: #ffffff; 
}

main{
    margin: 0;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
}

h1{
    font-family: 'ka1', monospace;
    font-size: 40px !important;
    color: aliceblue;
}
h2{
    font-family: 'Positive System', monospace;
    font-size: 27.5px;
    color: aliceblue;
}
p{
    font-size: 17.5px;
}
li{
    text-align: left;
}

.Portada{
    margin: 0;
    border: 0;
    padding: 2%;
    position: relative;
    background-color: rgba(0, 0, 0, 0.63);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}
video{
    position: relative;
    width: 90%;
    height: 75%;
    filter: blur(2px) !important;
    z-index: -1;
}
.PortadaTitulo{
    position: absolute;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.Portada .Subtitle{
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 20px !important;
    color: aliceblue;
}
.Title{
    margin: 2%;
    border: 0;
    padding: 0;
}

hr{
    color: aliceblue;
    opacity: 100%;
}
.Portada #hr1{
    width: 40%;
}
.Portada #hr2{
    width: 20%;
}

.Cuerpo{
    margin: 0;
    border: 0;
    padding: 2%;
    background-color: #131313;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-around;
    align-items: flex-start;
}
.Columna{
    margin: 0;
    border: 0;
    padding: 0;
}
.Section{
    margin: 0;
    border: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: space-around;
}
.Section img{
    width: 40%;
}
.Texto{
    width: 40%;
    text-align: center;
}

.Features{
    margin: 2% auto;
    border: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
}

.Card{
    margin: 2% auto;
    border: 2px double #ffffff;
    border-radius: 10px;
    padding: 1%;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.Card h1{
    font-size: 30px;
}
.Card h2{
    font-size: 25px;
}

.Old .Card{
    width: 40%;
}
.Old .Card li{
    display: none;
}
.Old .Card:hover li{
    display: list-item;
}

.borderless{
    border: 0;
}
.border-light{
    border: 2px double #ffffff;
    border-radius: 10px;
}
.border-dark{
    border: 2px double #131313;
    border-radius: 10px;
}

.width-xl{
    width: 100%;
}
.width-l{
    width: 70%;
}
.width-m{
    width: 40%;
}
.width-s{
    width: 20%;
}

.flex-row{
    display: flex;
    flex-flow: row wrap;
}
.flex-column{
    display: flex;
    flex-flow: column wrap;
}

.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

@media screen and (max-width: 600px) {
    .flex-row{
        flex-flow: column !important;
    }
    .width-m{
        width: 100% !important;
    }
}