/* Main Body */

@media (min-width: 992px) {
    main {
        height: 85vh;
    }
    #artistInnerContainer {
        height: 45vh;
        display: flex;
        flex-direction: column;
    }
    .spacer {
        display: flex;
        flex-grow: 1;
        flex-shrink: 0;
    }
}

.firstrow {
    height: 40vh;
    min-height: 15vw;
    width: 100vw;
    background: linear-gradient(to right, #36394d 0%, #2c2f3d 40%, #36394d 60%, #2c2f3d 100%);
    margin: 0 0 0 -10vw;
    font-size: calc(0.75rem + 1.5vw);
}

.artist-img {
    display: block;
    width: 20vh;
    height: auto;
    margin: 0 auto;
    border: 3px solid white;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

#artistlogos {
    width: 100%;
}

@media (min-width: 991px) {
    .firstrow {
        font-size: calc(0.75rem + 0.5vw);
    }
    #artistlogos {
        width: 50%;
    }
}

#artistlogos a {
    font-size: calc(0.75rem + 0.75vw);
    height: calc(0.75rem + 0.75vw);
    color: white;
    text-decoration: none;
}

#artistlogos a i {
    font-size: calc(0.75rem + 0.5vw);
}

#artistName {
    font-size: calc(1rem + 0.5vw);
}

.icon1 {
    display: inline-block;
}
.icon2 {
    display: none;
}

.icon2fb::before {
    color: #229ED9;
}
.icon2tx {
    filter: invert(100%);
}
.icon2ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.icon2sc {
    color: #FF5500;
}
.icon2sp {
    color: #20D760;
}
.icon2vk {
    color: #5181B8;
}

/* Heading */

.pageheading {
    margin-top: 2.5vh;
    color: white;
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .pageheading {
        margin-bottom: 2.5vh;
        font-size: 1.35rem;
    }
}

/* Albums */

.album {
    width: 100%;
    height: 125%;
    margin-bottom: 0.625rem;
}

.album-container {
    position: relative;
    overflow: hidden;
}

.blurred {
    filter: blur(2rem);
}

.unblurred {
    width: 75%;
    height: auto;
    position: absolute;
    left: 12.5%;
    top: 5%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.unblurred:hover {
    transform: scale(1.05);
}

.release-info {
    position: absolute;
    top: 79%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 100%;
}

.release-title {
    color: white;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 0.775vw;
}

.release-artist {
    color: white;
    font-size: 0.75vw;
}

@media (max-width: 991px) {
    .release-info {
        top: 80%;
    }

    .release-artist, .release-title {
        font-size: calc(0.75rem + 1vmin);
    }
}