* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}


header {
    
    width: 100%;
    height: 50px;
    background-color: cornflowerblue;
    color: white;
    position: fixed;
    top:0;
    left:0;
    z-index: 103;
 
}

.contenedor  {
    width: 100%;
    margin: auto;
     
}


.caja {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    
}

.caja .foto {
    
    width: 50px;
    margin-left: 10px;
    border-radius: 5px;
    border: 2px solid white;
}

.caja .texto {
    position: absolute;
    font-size: 0.9em;
    left: 70px;
    margin-top: 9px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    
    
}









h1 {
    float: right;
    font-size: 27px;
    margin: 9px 0;
    cursor: pointer;
    margin-right: 5px;
    color: white;
    
}

h1:active {
    color: #434142;
}

.notificaciones {
    
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-top: 30px;
    background-color: dimgray;
    
}




header .contenedor {
    display: table;
}

#menu-bar {
    display: none;
}

header label {
    float: left;
    font-size: 28px;
    margin: 9px 0;
    cursor: pointer;
}

label:active {
    color: #434142;
}


.menu {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 50px;
    left: 0;
    background-color: #434142;
    transition: all 0.5s;
    transform: translateX(-100%);
    
                     
}

.menu a {
    
    display: block;
    color: white;
    height: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: none;
    padding: 15px;
    border: 1px solid white;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
  
}


.menu a:active {
    background-color: white;
    color: #434142; 
    
}

#menu-bar:checked ~ .menu {
    transform: translateX(0%);
}



