@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #051320;
}
.calendar{
    position: relative;
    width: 260px;
}
.calendar:before{
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 206px 208px #ffbd22, -35px 70px #FF5733;
}
.calendar .calendar-body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-bottom: 6px solid #4285F4;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px  25px rgb(1 1 1 / 15%);
}
.calendar .calendar-body .month-name{
    color: #fff;
    background-color: #4285F4;
    width: 100%;
    font-size: 1.6em;
    text-align: center;
    font-weight: 400;
    padding: 5px 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.calendar .calendar-body .day-name{
    color: #fff;
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 20px;
}
.calendar .calendar-body .date-number{
    color: #fff;
    font-size: 6em;
    font-weight: 600; 
    line-height: 1.2em;
}
.calendar .calendar-body .year{
    color: #fff;
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 20px;
}