* {
    box-sizing: border-box;
}

html {
    font-size: x-small;
}

body {
    background-image: url('../assests/bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

section {
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    z-index: 1;
}

.metal-mania-regular {
    font-family: "Metal Mania", system-ui;
    font-weight: 400;
    font-style: normal;
  }

.content-container {
    color: white;
    padding-top: 5%;
    height: 100%;
    width: 100%;
    max-height: 30%;
}

.record-cover, .record, .record-cover-back {
    position: fixed;
    top: 5vh;
    width: 90%;
    height: 90%;
    max-width: 100%;
    max-height: 100%;
    z-index: -1;
}

.scroll {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    height: 100vh;
    z-index: 2;
}

.button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #201e1f;
    background-color: #cdbca8;
    border: solid #cdbca8;
    border-radius: 5px;
    padding: 1rem 1.5rem;
}

.social-icon {
    color: #cdbca8;
}

.profile-pic {
    width: 25%;
    margin: 5%;
    border-radius: 50%;
}

.bg-banner {
    background-color: #201e1f40;
}


/*** RESPONSIVE MEDIA QUERIES ***/

/* LANDSCAPE */
@media (orientation: landscape) {
    .content-container {
        margin-left: 50%;
        width: auto;
        height: 100%;
        max-width: 50%;
        max-height: 100%;
    }
}

/* XS */
@media (min-width: 475px) {
    html {
        font-size: small;
    }

    .container {
        max-width: 475px;
    }

    .content-container {
        margin-left: 50%;
        max-width: 50%;
        max-height: 100%;
    }

    /* body {
        border: dashed 2px red;
    } */
}

/* SM */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }

    /* body{
        border: dashed 2px purple;
    } */
}

/* MD */
@media (min-width: 768px) {    
    .container {
        max-width: 768px;
    }

    /* body {
        border: dashed 2px blue;
    } */
}

/* LG */
@media (min-width: 1024px) {
    html {
        font-size: small;
    }

    .container {
        max-width: 1024px;
    }

    /* body {
        border: dashed 2px orange;
    } */
}

/* XL */
@media (min-width: 1280px) {
    html {
        font-size: medium;
    }

    .container {
        max-width: 1280px;
    }

    /* body {
        border: dashed 2px yellow;
    } */
}

/* XXL */
@media (min-width: 1536px) {
    html {
        font-size: large;
    }

    .container {
        max-width: 1536px;
    }

    /* body {
        border: dashed 2px green;
    } */
}