/* @import url('https://fonts.googleapis.com/css?family=Nunito&display=swap'); */
body{
    margin:0;
    padding:0;
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(2.jpg);
    background-size: cover;

}
.calendar{
    width:400px;
    height:auto;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 5px 50px rgba(0,0,0,0.5);
}
.calendar .date{
    padding:20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
    grid-gap: 10px;
}
.calendar .date div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    color: #262626;
}
.calendar .date div.day{
    font-weight: 700;
}
.calendar .date div.day:first-child,
.calendar .date div.number:nth-child(7n + 1){
    color: #ff685d;
    font-weight: 700;
}
.calendar .date div.number.active,
.calendar .date div.number:hover{
    background: #009688;
    color: #fff;
    cursor: pointer;
}

.calendar .image{
    width:100%;
    height:200px;
    background: url(5.jpg);
    background-size: cover;
    padding:20px;
    box-sizing: border-box;
}

.calendar .image h2,
.calendar .image h3{
    margin:0;
    padding: 0;
    Color:#fff;
    text-shadow: 0 2px 2px rgba(0,0,0,0.2);
}
.calendar .image h3{
    font-weight: 500;
}

