.cover {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1/1.2;
}

.cover > .coverImg {
    width: 98%;
    aspect-ratio: 1/1;
    position: relative;
    top: -20px;
    right: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover > .coverImg > img.paused {
    animation-play-state: paused;
}

.cover > .coverImg > img {
    width: 90%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    -webkit-mask: radial-gradient(circle,
    transparent 22%,
    black 22%);
    mask: radial-gradient(circle,
    transparent 22%,
    black 22%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cover > .text {
    position: relative;
    top: -10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.cover > .text > :first-child {
    font-size: 1.5rem;
}