*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}

body{
    overflow: hidden;
    background: linear-gradient(45deg,#1d0000,#20205b);

}

.container{
    min-height: 100vh;
    width: 100%;
}

.calender{
    background: white;
    height: 250px;
    width: 350px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 100px auto 50px;
}

.left{
flex:1;
color: black;
background:#fff;
display: flex;
flex-direction: column;
align-items:center;
}
.left h1{
    font-size: 100px;
    font-weight: 50;
    line-height: 100px;
}
.left h3{
    font-size: 25px;
    font-weight: 200;
}
.right{
    background: orangered;
    height: 100%;
    width: 40%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color:#fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}
.right h2{
font-size: 25px;
font-weight: 50;

}