body{
    align-content: center;
}
.contenedor-calendar{
    width: auto;
    padding-left: 20%;
}
.calendar{
    position: relative;
    background-color: #1A1A40;
    width: 80%;
    height: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 5% solid black;
    box-shadow: 0 15% 35% rgb(0,0,0,0.5);
}
.calendar .date{
    width: 400px;
    padding: 30px;
    box-sizing: border-box;
}
.calendar .texto{
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    color: white;
    background-color: #3E497A;
}
.calendar p{
    padding-left: 15%;
    font-size: 170%;
    padding-top: 3%;
}
.calendar .date h3{
    color: white;
    margin: 0 0 20px;
    padding: 0;
    font-size: 150%;
    font-weight: 500;
    text-align: center;
}
.calendar .date .days{
    font-size: 150%;
     display: flex;
     flex-wrap: wrap;
}
.calendar .date .days .day,
.calendar .date .days .number
{
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.calendar .date .days .number.active{
    background-color: #4B5D67;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}
@media (max-width:1050px){
    .contenedor-calendar{
        display: none;
    }
}
@media (min-width:1049px){
    .calendario{
        display: none;
    }
}