*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(rgb(82, 80, 80), black);
}

.calendar{
    width: 300px;
    height: 250px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    background: #fff;
}

.left, .right{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    height: 100%;
    width: 50%;
    flex-direction: column;
}

.right{
    background: #f4351e;
    color: #fff;
    width: 42%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.left{
    width: 58%;
}

#date{
    font-size: 100px;
    line-height: 90px;
}