*{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
    cursor:default;

}
.hero1{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(50deg,skyblue,pink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.calender{
    width: 300px;
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.left, .right{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-direction: column;
}
.right{
    width: 42%;
    background: red;
    color: white;
    border-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.left{
    width: 58%;
    color: blue;
}
#day{
    text-transform:capitalize;
}
#month{
    text-transform: capitalize;
}
#date{
    font-size: 100px;
    line-height: 90px;
}