@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;1,400&display=swap');

:root{
    --verde: #006b74;
    --limon: #00EBFF;
    --degradado: linear-gradient(90deg, var(--limon), var(--verde) );

}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: none;
}

*::selection{
    background-color: var(--limon);
    color: white;
}

html{
    font-size: 62.4%;
    overflow: hidden;
}

body{
    background-color: #f9f9f9;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo{
    font-size: 2rem;
    color: var(--verde)
}

header.logo span{
    color: var(--limon);
}

header .navbar a{
    font-size: 1.8rem;
    margin-left: 2rem;
    color: var(--verde);
}

header .navbar a:hover{
    color:var(--limon)
}

header input{
    display: none;
}

header label{
    font-size: 3rem;
    color: var(--verde);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

section{
    min-height: 100vh;
    padding: 0 9%;
    padding-top: 7.5rem;
    padding-bottom: 2rem;

}



@media(max-width:1200px){
    html{
        font-size: 55%;
    }

}

@media(max-width:768px){
    header label{
        visibility: visible;
        opacity: 1;
    }
    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 2rem;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: .3s linear;

    }

    header .navbar a{
        display: block;
        margin: 2rem 0;
        font-size: 2rem;
    }

    header input:checked ~.navbar{
        transform: scaleY(1);
        opacity: 1;
    }
    header input:checked ~ label::before{
        content: '\f00d';

    }
    .inicio{
        flex-flow: column-reverse;
    }

    .inicio .image img{
        width: 100%;
    }

    .inicio .content h3{
        font-size: 3.6rem;
    }
    .inicio .content p{
        font-size: 1.5rem;
    }
}

@media(max-width:450px){
    html{
        font-size: 49%;

    }
}

.preloader{
    margin-top: 100px;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    position: center;
    left: 0;
    top: 0;
    z-index: 10000;
}

.spinner{
    width: 100px;
    height: 100px;
    border-top: 5px solid #00EBFF;
    border-right: 5px solid transparent;
    border-radius: 50%;
    animation: spin 3s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 10000;
}

.spinner > div{
    box-sizing: border-box;
    margin: auto;
    width: 100%;
    height: 100%;
    animation: spin 4s linear infinite
}

@keyframes spin{
    100%{
        transform: rotate(360deg);
    }
}

.console-container {
    margin-top: 100px;
    font-family:'Poppins';
    font-size:4em;
    text-align:center;
    height:200px;
    width:600px;
    display:block;
    position:absolute;
    color:rgb(0, 0, 0);
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
  }
  .console-underscore {
     display:inline-block;
    position:center;
    top:-0.14em;
    left:10px;
    margin-top: 300px;
  }




