body {
    background: rgb(75, 75, 75);
    color: white;
}

.wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.squade {
    display: flex;
    width: 300px;
    height: 300px;
    background: #926d6d;
    justify-content: center;
    align-items: center;
    border-radius: 10%;
    overflow: hidden;
}

.span {
    color: #73c573;
    font-size: 4rem;
    opacity: 0;
    transition: opacity 0.3s 0.5s;
}

.strip {
    position: absolute;
    background: #fff;
    height: 30px;
    top: 100px;
    left: 300px;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.squade:hover .strip {
    opacity: 1;
    width: 60%;
}

.squade:hover .span {
    opacity: 1;
}



/* ================== Выполнение дз ниже =================== */