
header{
    width: 100%;
    height: 8.75rem;
    display: grid;
    grid-template-rows: 1fr 1fr;
}

header .header-icons-container{
    width: 100%;
    height: 60px;
    display: grid;
    background-color:aquamarine;
    
}


header .header-icons-container .icons{
    width: 300px;
    height: auto;
    display: flex;
    justify-items: flex-end;
    align-items: center;
    justify-content: space-between; /* Espacio */
    justify-self: end;
    margin-right: 50px;  /*espacio de margin a la derecha*/
    font-size: 30px;
}
 nav{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 18rem;
    
} 


 nav .nav-logo-container{
    width: 100%;
   
} 
nav .nav-logo-container img{
    width: 220px;
    margin-top: 10px;
}



nav .profile-link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 150px;
}

nav .profile-link a{
    color:blue;
    border-bottom: 1px solid black;
}


.reloj-contador{
    background-color: dodgerblue;
    color: aqua;
    text-align: center;
    font-size: 25px;
}

button{
    background-color: blue;
    color: aliceblue;
    font-size: 20px;
}


footer{
    display: flex;
    width: 100%;
    height: 4rem;
    background-color: rgb(91, 157, 135);
    justify-content: center;
    text-align: justify;
    align-items: center;
    border-bottom: 28px solid aquamarine;
    margin-top: 300px;
}

footer p{
    color: #fff;
   font-family: 'Roboto', sans-serif;
   font-size: 20px;
   margin-top: 0px;
   padding: 0;
   
}
