*{
    margin: 0;
    padding: 0;
}
.calender{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
}
.calender h1{
    margin: 10px 0;
    color: blueviolet;
}
.week{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 2rem;
    height: 1.5rem;
    padding: 5px;
}
.items{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
.date{
    background-color: bisque;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 1.5rem;
    font-size: 1.2rem;
    border: 2px solid red;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.date:hover{
    cursor: pointer;
    background-color: blueviolet;
    transition: all 0.5s ease;
}
.red{
    background-color: rgb(220, 67, 67);
}
marquee{
    padding: 1rem 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}