.img {
    height: 250px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0 10px 0 10px;
    border-radius: 15px;
}

body {
    overflow: hidden;
}


.content {
    display: flex;
    flex-direction: column;

    margin: 50px 0 0 0;
    height: 75vh !important;

    align-items: center;
    justify-content: center;
    width: 100vw;
}

.track {
    margin-top: 0;
    padding: 10px 0 10px 0;
    background-color: #e3e3e3;

    width: 100vw;
    overflow-x: hidden;
    white-space: nowrap;
}

.images {
    display: inline-block;
    animation: 50s scroll infinite linear;
}

.text > a:visited {
    color: white;
}

.text > a {
    color: white;
}

.text {
    padding: 0 200px 0 200px;
    color: white;
    font-size: 25px;
}

.nicknames {
    display: flex;
    margin-top: 50px;
}

#avatar {
    opacity: 0;
    margin-left: 25px;
    height: 150px;
    width: auto;
}

.nicknames > p {
    flex: 1;
}

* {
    --scroll-width: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.box {
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nicknames {
    opacity: 0;
    display: inline-block;
    transition: width 2s;
}

p.big {
    display: inline-block;
    transition: all 15s ease;
}

@keyframes before {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes beforeAvatar {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(50%);
        opacity: 0;
    }
}