@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(45deg, rgba(87,87,87,1) 0%, rgba(87,87,87,1) 50%, rgba(122,122,122,1) 100%);
}

.calender {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    height: 550px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 30px #3b3b3b;
}

.calender-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
    height: 100%;
    background-color: white;
    border-radius: 20px 0px 0px 20px;
}

.calender-card-red {
    width: 40%;
    background-color: #f33232;
    border-radius: 0px 20px 20px 0px;
}

.calender-card-number {
    font-size: 260px;
}

.calender-card-white-text {
    position: relative;
    bottom: 90px;
    font-size: 55px;
    font-weight: 300;
}

.calender-card-red-text {
    font-size: 42px;
    font-weight: 300;
    color: white;
}

@media only screen and (max-width: 750px) {
    .calender-container {transform: scale(0.8);}
}

@media only screen and (max-width: 600px) {
    .calender-container {transform: scale(0.6);}
}

@media only screen and (max-width: 450px) {
    .calender-container {transform: scale(0.5);}
}