*{
    /* border: 1px solid black; */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: cursive;
    background-color: slateblue;
}

.calender-container{
    background-color: white;
    width: 300px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0, 0, 0, .3);
    overflow: hidden;

}

.month-name{
    background-color: orangered;
    color: white;
    font-size: 30px;
    padding: 10px;
    font-weight: bold;
}

.day-name{
    padding-top: 20px;
    font-size: 20px;
    color: darkgrey;
}

.day-number{
    font-size: 80px;
    font-weight: bold;
}

.year{
    margin: 20px;
    font-size: 20px;
    color: darkgray;
    font-weight: 500;
}

