body {
    background-color: #333;
    color: #fff;
}

.container {
    display: flex;
    padding: 204px 275px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box{
    display: flex;
    background: #454545; 
    width: 200px;
    height: 200px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* cursor: auto; */
}

.box__bg{
    opacity: 0;
    width: 100%;
    position: relative;
    left: 30px;
    z-index: 0;
}
.box:hover .box__bg{
    transition: opacity 1s 3s;
    opacity: 1;
}


.box__loading{
    align-self: start;
    background: #fff;
    padding: 300px, auto;
    width: 0px;
    height: 20px;
    position: absolute;
    left: -200px;
    top:-100px;
}
.box:hover .box__loading{
    transition: width 3s;
    width: 600px;
}


.box:hover .box__text{
    transition: 1s 3s;
    opacity: 1;
}
.box__text{
    -webkit-text-stroke: 0.5px #3cae2d;
    opacity: 0;
    z-index: 1;
    position: relative;
    left: -100px;
    top:-80px;

}

/* .transition {
    height: 100%;
}

.button {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    text-transform: uppercase;
    font-family: sans-serif;
    background-color: #555;
}

.block {
    width: 10px;
    height: 150px;
}

.red {
    background: linear-gradient(120deg, #f34384c4, #f16452c4 1000px);
}

.blue {
    background: linear-gradient(120deg, #5f51dbc4, #73bcecc4 1000px);
}

.orange {
    background: linear-gradient(120deg, #f09351c4, #f8bf86c4 1000px);
}

.purple {
    background: linear-gradient(120deg, #b475f8c4, #d27bf2c4 1000px);
}

.transition:hover .block {
    width: 100%;
}

/* ========================================================= */

/* .button{
    transition: background .3s, border-radius .3s .3s;
     */
/* transition-duration: ;
    transition-property: prop;
    transition-delay: ;
    transition-timing-fiction:} */

/* .button:hover{
    background: #206183;
    border-radius: 100px;

}

.block{
    transition-duration: 1s;
}

.red{
    transition-timing-function: ease;
}

.blue{
    transition-timing-function: ease-in;
}

.orange{
    transition-timing-function: ease-out;
}

.purple{
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
 */ 