body {

    margin: 0;
    color: white;
    position: relative;
    background-color: black;
    font-family: 'BN Modern';
    font-size: 16px
}

img {
    max-width: 100%;
}

.background-image {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    height: 100vh;
    width: 100vw;
    background-image: url(../images/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.background-image:after {

    content: '';

    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;

    background: rgba(0,0,0,0.3);
    
}

.container {

    width: 75%;
    max-width: min(calc(100% - 2rem), 1200px);
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.wrapper {

    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 10rem;
    max-height: 100%;
    padding: 2rem 0;
    margin: 0;
    margin-left: auto;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.desc,
.art {
    flex-basis: 10rem;
    flex-grow: .4;
    max-width: 100%;
}

.desc {

    flex-grow: .6;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    padding: 0 2rem;
}

.art {

    position: relative
}

.sale {

    position: absolute;
    top: 50%;
    right: 50%;

    display: flex;
    padding: 1.5rem 3rem;
    width: 80%;

    background: rgba(173, 7, 3, .9);
    transform: translateX(50%) translateY(-50%) rotate(-5deg);
    animation: fadeInOut 2s linear infinite;

}

.art .sale img {
    border: 0;
    box-shadow: none;
}

.details {

    padding: 0 2rem;
    margin-top: -1rem;
    text-align: center;
}

.details img {

    max-width: 50%;
}

.art img {

    width: 100%;
    height: auto;
    border: 1px solid #fff;
    box-shadow: 0 0 20px 5px black;
}

.support,
.special-guests {

    padding: 0 1rem;
}

.special-guests {
    text-align: center;
}


.special-guests img{
    width: 50%;
}

.sponsers img {
    height: auto;
}

.spofity-wrapper {

    padding-bottom: 3rem;
    width: 100%;
}

a.button {

    position: relative;
    display: block;
    padding: .75rem;
    font-size: 24px;
    box-sizing: border-box;
    width: 20rem;
    max-width: 100%;
    background: #FDD839;
    text-align: center;
    text-decoration: none;
    font-family: 'BN Modern';
    letter-spacing: .5px;
}

a.button:before {

    content: '';
    position: absolute;

    inset: 0;
    background: rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transition-duration: 250ms;
    transition-property: visibility, opacity;

}

a.button:hover:before {
    opacity: 1;
    visibility: visible
}

a.button,
a.button:focus,
a.button:visited {

    color: #000
}

.link a {

    display: flex;
    justify-content: center;
    transition: transform 250ms;
    margin: 4rem auto 0;
}

.link a:hover {

    transform: scale(1.05);
}

.hide {

    display: none;
}

.spotify-link-wrapper {
    margin: 1rem 0;
}

.social {

    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: .75rem;
    margin: 3rem auto;
}

.social-link {

    display: flex;
    justify-content: center;
    align-items: center;
    padding: .75rem;
    border-radius: 50%;
    margin: 0 .75rem;

    background: #fff;
}

.social-link img {

    width: 1.5rem;
}


/* FOR MOBILES */
@media only screen and (max-width: 992px) {
    body {

        height: 100%;
        overflow: auto;
        font-size: 14px;
    }

    .container {

        width: 100%;
        padding: 0;
    }

    .wrapper {

        position: relative;

        margin: auto;
        margin-top: 0;
        padding: 2rem 1rem;
        row-gap: 1rem;
        flex-wrap: wrap;
    }

    .background-image {
        background-position: top right 20%;
    }
    
    .background-image:after {
        background: rgba(0,0,0,0.5);
    }
    
    .desc, 
    .art {
        flex-grow: 1;
    }

    .desc {

        padding: 0;
        padding-bottom: 2rem;
    }

    .art .sale {

        position: static;
        transform: none;
        box-sizing: border-box;
        margin-bottom: 1rem;
        margin-top: -2rem;
        width: 100%;
    }
    
    .special-guests img{
        width: 75%;
    }

    .title {

        max-width: 100%;
        padding: 0;
    }
    
    a.button {
        
        width: 100%;
    }

    .spotify-link {
        background: #1DB954;
        ;
    }

    .spotify-link img {
        filter: grayscale(1) contrast(100) brightness(1);
    }

    .spotify-link .link a {

        margin: 2rem auto;
        width: 75%;
    }

    .info {

        width: 70%;
    }

    .social {
        width: 100%;
        padding-inline: 0;
        margin: 1rem auto;
    }

    .social-link {

        flex-basis: 0;
        flex-grow: 1;
        padding: .75rem;
        margin-inline: 1rem;
    }

    .social-link img {

        width: 100%;
    }

    .details {

        padding: 0;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    65% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}