#timings_container{
    border: 1px solid #777;
    height: 530px;
    width: 530px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}

#timings_container:hover .box{
    background-color: white;
    color: black;
    border-radius: 30px;
    margin-left: 420px;
    transform: rotate(720deg);
}

.box{
    border: 1px solid;
    font-size: 12px;
    height: 60px;
    width: 60px;
    position: relative;
    color: white;
    background-color: #777;
    text-align: center;
    margin-bottom: 10px;
}

#ease{
    border-color: aqua;
    transition: all 2s ease 0s;
}

#ease-in{
    border-color: blue;
    transition: all 2s ease-in 0s;
}

#ease-out{
    border-color: blueviolet;
    transition: all 2s ease-out 0s;
}

#ease-in-out{
    border-color: cadetblue;
    transition: all 2s ease-in-out 0s;
}

#linear{
    border-color: darkblue;
    transition: all 2s linear 0s;
}

#custom{
    border-color: darkcyan;
    transition: all 2s cubic-bezier(1, 0.835, 0, 0.945) 0s;
}

#negative{
    border-color:indigo;
    transition: all 2s cubic-bezier(1, -0.53, 0.405, 1.425) 0s;
}