:root{
    --Osans: 'open_sanscondensed_light', sans-serif;
    --Electrolize: 'electrolize-regular', sans-serif;
}
@font-face {
    font-family: 'open_sanscondensed_light';
    src: url('fonts/OpenSans-CondLight-webfont.eot');
    src: url('fonts/OpenSans-CondLight-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/OpenSans-CondLight-webfont.woff') format('woff'),
         url('fonts/OpenSans-CondLight-webfont.ttf') format('truetype'),
         url('fonts/OpenSans-CondLight-webfont.svg#open_sanscondensed_light') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'electrolize-regular';
    src: url('fonts/Electrolize-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

html, body{
    margin: 0px;
    padding: 0px;
    color: whitesmoke;
    font-family: 'open_sanscondensed_light', sans-serif;
    background: #010d14;
}
*{
    box-sizing: border-box;
}
span{
    font-family: var(--Osans);
    font-size: 20px;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--Electrolize);
    padding: 15px;
}
h1{
    font-size: 45px;
}
h2{
    font-size: 30px;
}
p{
    font-size: 20px;
    padding: 10px;
}
.main{
    top: 0px;
    position: relative;
    min-height: 100vh;
    /*background: #010d14;*/
    padding: 25px;
    width: 100vw;
}
.fondo{
    z-index: -1;
    position: absolute;
    top: 0px;
    background: linear-gradient(
    0deg, rgba(1, 13, 20, 1) 0%, 
    rgba(2, 16, 26, 1) 43%, 
    rgba(5, 12, 31, 1) 55%, 
    rgba(2, 4, 31, 1) 79%, 
    rgba(0, 0, 0, 1) 100%);
    width: 100vw;
    height: 100vh;
}
.center{
    text-align: center;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}
.glass{
    background: rgba(0, 0, 0, 0.35);
    border-radius: 15px;
    box-shadow: 0 0px 11px 0px rgba(45, 255, 196, 0.96);
    border: 1px solid rgba(45, 255, 196, 1);
    padding: 15px;
    display: block;
    margin: 15px;
}
.tecs{
    display: flex;
    align-items: center;
    justify-content: center;
}
.stretch{
    display: flex;
    align-items: stretch;
}