@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #222327;
}

/* Styling the Heading */
.head{
    min-height: 50vh;
    min-width: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222327;
}
.heading{
    height: 5rem;
    width: 500px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #222327;
    border-radius: 50px;
    box-shadow:0 0 20px #00fffb, 0 0 40px #0081bc;
}

/* Styling the Calendar */
.contaner{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-width: 100vh;
    background: #222327;
}
.week{
    display: flex;
    gap: 5px;
    height: 120px;
    padding: 20px 40px;
    background: #fff;
    border-radius: 10px;
}
.week li{
    list-style: none;
    height: 5rem;
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    border-radius: 20px;
    font-size: 1.25rem;
}

/* Style the current day  */
.week li.current{
    position: relative;
    background: #29fd53;
    height: 100px;
    width: 100px;
    font-size: 1.65em;
    color: #222327;
    border: 6px solid #222327;
    transform: translateY(-70px);
    font-weight: 500;
    cursor: pointer;
}

/* Make curve degine from left and right side of the current day */
.week li.current::before{
    content: "";
    position: absolute;
    top: 44px;
    left: -36px;
    width: 30.5px;
    height: 19px;
    background: #fff;
    border-top-right-radius: 10px;
    box-shadow: 5px -6px #222327;
}
.week li.current::after{
    content: "";
    position: absolute;
    top: 44px;
    right: -36px;
    width: 30.5px;
    height: 19px;
    background: #fff;
    border-top-left-radius: 10px;
    box-shadow: -5px -6px #222327;
}

/* Style for current Date */
.week li.current h1{
    position: absolute;
    transform: translateY(76px);
    font-size: 1.6em;
    color: #222327;
}

/* Style for current Month */
.week li.current h5{
    position: absolute;
    transform: translateY(104px);
    font-size: 0.55em;
    color: #222327;
    font-weight: 500;
}

/* Style for current Year */
.week li.current h3{
    position: absolute;
    transform: translateY(-64px);
    font-size: 0.85em;
    color: #fff;
    font-weight: 500;
}