@charset "UTF-8";

#timings_container {
    border: 3px solid #2b168a;
    height: 530px;
    width: 530px;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}

.box {
    font-size: 12px;
    height: 60px;
    width: 60px;
    margin-bottom: 10px;
    position: relative;
    background-color: #613232;
    color: #fff;
}

.box p{
    text-align: center;
    padding: 4px;
}

#ease.box {
    border: 2px solid #ff8800;
    transition: all 4s ease 0s;
    /* transition: "all" (all:text,color,etc) "4s" (duration) "ease" (type of transition) "0s" (delay) */
}

#ease-in.box {
    border: 2px solid #00ff00;
    transition: all 4s ease-in 0s;
}

#ease-out.box {
    border: 2px solid #0000ff;
    transition: all 4s ease-out 0s;
}   

#ease-in-out.box {
    border: 2px solid #ffff00;
    transition: all 4s ease-in-out 0s;
}

#linear.box {
    border: 2px solid #ea00ff;
    transition: all 4s linear 0s;
}

#custom.box {
    border: 2px solid #00ffff;
    transition: all 4s cubic-bezier(0.25,1.24,0.76,-0.21) 0s;
    /* transition: all 4s cubic-bezier(1,0.835,0,0.945) 0s; */
}

#negative.box {
    border: 2px solid #00ffaa;
    transition: all 4s cubic-bezier(1,-0.53,0.405,1.425) 0s;
}

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