/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
body{
    background:url("../images/background.jpeg");
    background-size: cover;
    font-family: 'Roboto', sans-serif;
}
.brand{
    margin:0 auto;
    text-align: center;
    padding:30px 0px;
}
.brand img{
    height: 100px;
}
.gmx{
    font-size: 0.8em;
    color:#8A8A8A;
    text-align: center;
    padding:0px 0px 30px 0px;
}
.container{
    width:600px;
    background:#FFF;
    margin: 0 auto;
    -webkit-box-shadow: 0px 2px 22px -2px rgba(0,0,0,0.61);
    -moz-box-shadow: 0px 2px 22px -2px rgba(0,0,0,0.61);
    box-shadow: 0px 2px 22px -2px rgba(0,0,0,0.61);
    margin-bottom:30px;
    padding: 30px;
    border-radius: 8px;
}
.container h3{
    text-align:center;
    margin-bottom:30px;
}
.day-block{
    text-align: right;
    padding:5px 10px;
    margin:8px 0px;
    border:1px solid #D1D1D1;
    border-radius: 8px;
    height: 70px;
    background-color:#F4F4F4;
}
.day-block:hover{
    -webkit-box-shadow: 0px 0px 13px 0px rgba(194,194,194,0.71);
    -moz-box-shadow: 0px 0px 13px 0px rgba(194,194,194,0.71);
    box-shadow: 0px 0px 13px 0px rgba(194,194,194,0.71);
    background-color:#FFF8EB;
}
.day-nom{
    float:left; text-align:left; text-transform:capitalize;
    font-weight: bold;
    padding-top:5px;
    color:#3E3B3B;
}
.hora-nom{
    float:left; text-align:left;
    font-weight: bold;
    padding-top:5px;
    color:#3E3B3B;
    width: 80%;
}
.day-btn{
    padding:15px 0px;
}

@media (max-width: 600px) {
        .container{
            width:90%;
            margin: 0 auto;

        }
    .hora-nom{
    width: 70%;
        font-size: 0.9em;
}
    .day-nom{
        font-size:1em;
    }
    .day-block{
        font-size: 0.8em;
    }

}