#main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

#box{
    border-radius: 0px 15px 0px 15px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition-duration: 0.5s;
    background-color: rgb(244, 255, 255);
    padding-bottom: 30px;
}

#box:hover{
    transform: translateY(-3px);
    background-color: rgb(233, 255, 255);
}

#img{
    border-radius: 0px 15px 0px 15px;
}
#div_img{
    transition-duration: 0.5s;
}

#div_img:hover{
    transform: scale(1.04);
}

#menu{
    display: flex;
    justify-content:space-between;
    margin-top: 40px;
}

.menu{
    font-size: 18px;
    border-radius: 40%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.8s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.menu:hover{
    color: blue;
    background-color: rgb(212, 255, 255);
    transform: scale(1.03);
}

.badge{
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}