/* 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");
}

*{
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
main{
    margin: 0;
    border: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
}
h1{
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'fasthand', monospace;
    font-size: 50px;
}
h2{
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Montserrat', monospace;
    font-size: 40px;
}
p, ul, li{
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 15px;
}
ul{
    padding-left: 2%;
}

header {
    padding: 10px 5%;
    background-color: rgb(29, 29, 29);
    position: sticky;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
header a, button{
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    color: aliceblue;
    background-color: rgba(0, 255, 255, 0);
    text-decoration: none;
}
header img{
    width: 100px;
}
header .btn{
    margin-left: auto;
}
header #Contact{
    margin-left: auto;
    padding: 9px 25px;
    background-color: rgba(36, 106, 255, 1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
header #Contact:hover{
    background-color: rgba(36, 106, 245, 0.8);
}

header #Search{
    margin-left: auto;
    width: auto !important;
}

/* --------------------------------- */
#Portada{
    margin: 0;
    border: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.63);
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
video{
    position: absolute;
    width: 100%;
    filter: blur(2px) !important;
    object-fit: cover;
    z-index: -1;
}
#Portada h1{
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 100px !important;
    font-family: 'fasthand', monospace;
    color: aliceblue;
}
#Portada .Subtitle{
    margin: 0;
    border: 0;
    padding: 0;
    font-size: 20px !important;
    color: aliceblue;
}
hr{
    color: aliceblue;
}
#Portada #hr1{
    width: 40%;
}
#Portada #hr2{
    width: 20%;
}
/*-------------------------------*/
.Title{
    margin: 2% !important;
    border: 0;
    padding: 0;
}
.Texto{
    margin: 0;
    border: 0;
    padding: 1%;
    width: 100%;
}
.Cuerpo{
    margin: 0;
    border: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: flex-start;
    align-items: center;
}
.Cuerpo a{
    color: rgb(0, 119, 255);
    transition: 0.3s;
}
.Cuerpo a:hover{
    color: rgb(71, 157, 255);
}

.Enlaces{
    margin: 0;
    border: 0;
    padding: 5%;
    background-color: white;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.Enlaces #Resumen p{
    font-size: 20px;
}
.Links{
    margin: 0;
    border: 2px double black;
    border-radius: 20px;
    padding: 5%;
    background-color: rgba(255, 228, 196, 0.616);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: flex-start;
}
.card{
    width: 40%;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .card{
        width: 80%;
    }
    /*.card-text{
        display: none !important;
    }*/
    .Links{
        flex-direction: column;
        align-content: center;
    }
}