*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(138, 149, 243);
}
.main{
    min-width: 200px;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    border-radius: 20px;
    background-color: white;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.month{
    background-color: rgb(255, 102, 0);
    width: 100%;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1em;
    font-family:cursive;
    font-weight: 700;
    letter-spacing: 2px;
}
.second{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    font-family: cursive;
    padding: 1rem;
}
.day{
    color: lightgray;
    font-size: 0.8em;
}
.date{
    font-size: 2.5em;
}
.year{
    font-size: 0.8em;
    color: lightgray;
}