.albums {
    position: fixed;
    left: 75%;
    top: 400px;
    transform: translateX(-50%);
    z-index: 5;

    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
}

.album:nth-of-type(1)  { margin-top: 0; }
.album:nth-of-type(2)  { margin-top: 40px; }
.album:nth-of-type(3)  { margin-top: 70px; }
.album:nth-of-type(4)  { margin-top: 90px; }
.album:nth-of-type(5)  { margin-top: 100px; }
.album:nth-of-type(6)  { margin-top: 100px; }
.album:nth-of-type(7)  { margin-top: 90px; }
.album:nth-of-type(8)  { margin-top: 70px; }
.album:nth-of-type(9)  { margin-top: 40px; }
.album:nth-of-type(10) { margin-top: 0; }

.connector {
    margin: 0;
    font-family: monospace;
    font-size: 14px;
    line-height: 1;

    position: relative;
    top: -20px;
}

.album {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
}
