body{    
    width: 100%;
    height: 100%;
    background-color: #FAF1E6;
    text-align: center;
    display: flex;
    flex-direction: column;
    place-items: center;

}

section{
    width: 50vw;
    display: flex;
    flex-wrap: wrap;
    padding: 0% 10% 0% 10%;
    justify-content:center;
}

.card{
    margin: 3% 5% 3% 5%;
    padding: 0px;
    width: 200px;
    height: 50px;
    display: flex;
    border-radius: 4px;
    
    text-align: center;
    
    box-shadow: 0px 3px 8px rgb(48, 46, 46);

}
.card .day{
    border-radius: 4px 0px 0px 4px;
    background-color: #FFC074;
    width: 30%;
    height: 100%;
    transition: all 0.3s ease;

}
.card .title{
    border-radius: 0px 4px 4px 0px;
    font-size: 1em;
    width: 100%;
    height: 100%;
    background-color: #B6C867;
    transition: all 0.3s ease;

}

.card a{
    display: flex;
    width: 100%;
    height: 100%;
    color: black;
    text-decoration: none;
}

.card:hover .day{
    width: 100%;
}

.card:hover .title{
    width: 0%;
    font-size: 0em;

}
