body{
    font-family: Arial, sans-serif;
    display: grid;
    place-items: center;
    height: 100vh;
    margin: 0;
    background-color: #333333;
}
.calendar{
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 0 30px #222222;
    overflow: 300px;
    width: 300px;
    color: white;
    padding: 20px;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.btn{
    cursor: pointer;
}
#month-year{
    font-size: 20px;
    font-weight: bold;
}
.weekdays, .days{
    display: flex;
    flex-wrap: wrap;
}
.days{
    height: 240px;
}
.weekdays div, .days div{
    width: 14.28%;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
}
.days div {
    cursor: pointer;
    transition: background-color 0.3s;
}
.days div:hover {
    background-color: white;
    color: orangered;
}
.days .today {
    background-color: orangered;
    color: white;
}
.days .fade{
    color: #555;
}




@media (max-width:799px){
    .calendar {
   
    width: 500px;
    height: 375px;
    
}
}
@media (max-width:1026px){
    .calendar {
   
    width: 500px;
    height: 400px;
    
}
.days {
    margin-top: 20px;
    height: 240px;
}
}

@media (max-width:477px){
    .calendar {
   
    width: 300px;
    height: 325px;
    
}
}