@import url('https://fonts.googleapis.com/css?family=Raleway'); 

* {
    margin: 0;
    padding: 0;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
}


body{
    font-family: raleway, sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    
}


#superior{
    height: 8rem;
    padding: 1rem;
    background-color: #375f9b;
    
}

#titulo {
    color: white;
    display: flex;
    font-size: 3rem;
    font-weight: 900;
    
}


.headerImg{
    margin: 0 1rem 0 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;    
}

#guarda {
    height: 5rem;
    text-align: center;
    background-image: url(img/guarda.svg);
    background-repeat: repeat-x;
}

#contenedor {
    flex-direction: column;
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.boton { 
    border-radius: 7rem;
    text-decoration: none;
    width: 40rem;
    height: 7rem;
    text-align: center;
    padding-top: 1.25rem;
    margin:1.9rem auto; 
}

#color1 {
    background-color: #3868f2;
    box-shadow: 0.3rem 0.3rem #274EAF;

}

#color2 {
    background-color: #ed4873;
    box-shadow: 0.3rem 0.3rem #BC335E;
    
}

#color3 {
    background-color: #11ce8f;
    box-shadow: 0.3rem 0.3rem #328878;
}

#color4 {
    background-color: #f7adc5;
    box-shadow: 0.3rem 0.3rem #CE89A2;
}

#color5 {
    background-color: #4fbded;
    box-shadow: 0.3rem 0.3rem #3399BC;

}

.boton a {
    color: white;
    font-size: 4rem;
    text-decoration:  none;
}

#inferior {
    height: 7rem;
    background-color: #fc6880;
       
}

footer img { 
    display: flex;
    width: 5rem;
    height: 5rem;
}

.softGray{
    background-color: #eaefe2;
}

.flex{ 
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.centered{
    margin-right: auto;
    margin-left: auto;     
}


.textohamb {
    font-size: 3rem;
    margin-bottom: 5rem;
    color: #375f9b;
    text-decoration: none;
    
}


.sidenav {
    
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 0; 
    position: fixed; 
    z-index: 1; 
    top: 0;
    right: 0;
    background-color: #11ce8f; 
    overflow-x: hidden; 
    padding-top: 60px; 
    transition: 0.5s;
    border-color: black;
    border-width: thick;
    box-shadow: 0rem 5rem 10rem
}


.sidenav a {
    padding: 10px 8px 10px 32px;
    margin-top: 10rem;
    text-decoration: none;
    font-size: 45px;
    color: #eaefe2;
    display: block;
    transition: 0.3s
}


.sidenav a:hover, .offcanvas a:focus{
    
    color:  #fc6880;
}


.sidenav .closebtn {
    flex-direction: column;
    position: absolute;
    top:0;
    font-size: 100px;
    margin: auto;

}


#main {
    transition: margin-left .5s;
     display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    
}

