/*======GENERALE=====*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    list-style: none;
    font-family: inter;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    text-align: center;
    background: black;
    color: white;
}

img {
    width: 100%;
}

a {
    color: #ffffff71;
    text-decoration: none;
    letter-spacing: 0.06em;
    font-weight: 400;
    font-size: .8em;
}

h3 {
    font-size: 1.27em;
    text-align: start;

}

h4 {
    font-size: 1em;
    text-align: start;
    color: rgba(255, 255, 255, 0.317);
    margin-top: .1em;
}

p {
    margin-top: 1.8em;
    font-size: .8em;
    text-align: start;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.669);
    line-height: 1.5em;
}

/*======HEADER=====*/
.fixed {
    position: fixed;
    z-index: 2;
}

.media {
    top: 2.2em;
    left: 2.5em;
}

.video {
    bottom: 2.2em;
    left: 2.5em;
}

.music {
    bottom: 2.2em;
    right: 2.5em;
}

.shop {
    top: 1.99em;
    right: 2.5em;
}

/*======MAIN=====*/

main {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.gallery {
    display: flex;
}

.gallery img {
    width: 52%;
    padding: .5%;
}

/*======RESPONSIVE=====*/

@media(max-width: 720px) {

    /*======GENERALE=====*/
    a {
        font-size: 0.85em;
    }

    /*======HEADER=====*/

    .media {
        top: 1.67em;
        left: 1.1em;
    }

    .video {
        bottom: 1.67em;
        left: 1.1em;
    }

    .music {
        bottom: 1.67em;
        right: 1.1em;
    }

    .shop {
        top: 1.56em;
        right: 1.1em;
    }

    /*======MAIN=====*/

    .gallery img {
        width: 100%;
        padding: 1%;
    }

}