* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url(img/cursor.png) 12 12, auto;
}

html {
    scroll-behavior: smooth;
}

/* ALL */

h3 {
    font-style: normal;
    font-family: "Erica One", serif;
    font-weight: 200;
    color: #F9BD6D;
    text-align: center;
    letter-spacing: 3px;
    margin: 20px;
    font-size: 200%;
}

body {
    background-color: #5A3D2B;
}

.seperator {
    background-color: #75C8AE;
    height: 3px;
}

a.top-header:hover,
a#back:hover {
    color: #FFDBAD;
    text-decoration: underline;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #75C8AE;
    color: #5A3D2B;
    border: none;
    padding: 10px 20px;
    border-radius: 45%;
    cursor: pointer;
    box-shadow: 0 0 10px #261d1d;
    font-size: 20px;
    transition: 0.3sease;
}

p#back {
    text-align: center;
    padding: 5%;
}

/* NAV & HEADER */

header {
    background-color: #261d1d;
    padding: 1% 3%;
}

nav>ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    font-size: 100%;
}

a.top-header,
a#back {
    font-family: "vina sans", serif;
    font-weight: 400;
    color: #75C8AE;
    margin-top: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    letter-spacing: 2px;
}

section {
    padding: 0% 5% 5%;
}

h1 {
    font-style: normal;
    font-family: "Erica One", serif;
    font-weight: 200;
    color: #F9BD6D;
    text-align: center;
    font-size: 200%;
    letter-spacing: 3px;
    padding: 2% 0% 0%;
}

h2 {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFDBAD;
    text-align: center;
    font-size: 100%;
}

/* INTRO */

main {
    background-color: #261d1d;
    padding: 5%;
}

p {
    font-family: "PT Sans Narrow", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFDBAD;
    text-align: justify;
    font-size: 100%;
    letter-spacing: 1px;
}

.acordeon {
    height: 80%;
    width: 100%;
    display: flex;
    margin: 5% auto 0;
    box-sizing: border-box;
}

.acordeon:hover .active {
    flex-basis: 0;
}

.image-box {
    margin: 0 1%;
    flex-grow: 1;
    flex-basis: 0;
    transition: .5s;
}

.image-box img {
    object-fit: cover;
    transition: .5s;
    width: 100%;
    height: 115px;
}

.image-box:hover {
    flex-basis: 50%;
}

.image-box:nth-child(1):hover {
    flex-basis: 50%;
}

/* BAND */

.container {
    position: relative;
    width: 100%;
}

.info {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.container:hover .overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#gallery img {
    width: 100%;
    padding: 5%;
}

#gallery {
    display: grid;
    grid: 1.44rem;
    gap: 1rem;
}

h4 {
    font-family: "vina sans", serif;
    font-weight: 400;
    color: #F9BD6D;
    text-align: center;
    font-size: 200%;
    padding: 3%;
}

/* ALBUM */

article {
    background-color: #261d1d;
    padding: 4%;
}

div#gallery {
    background-color: #261d1d;
    padding: 3%;
}

figure#rumours {
    position: relative;
}

figure#rumours .vidible {
    opacity: 1;
}

#text,
figure#rumours {
    margin: 5%;
}

h5 {
    font-family: "PT sans Narrow", serif;
    font-weight: 400;
    color: #FFDBAD;
    font-size: 100%;
    letter-spacing: 1px;
    text-align: justify;
}

h5#songs {
    font-family: "PT sans Narrow", serif;
    font-weight: 400;
    color: #FFDBAD;
    text-align: center;
    letter-spacing: 1px;
}

.collapsible {
    background-color: #261d1d;
    color: #F9BD6D;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 130%;
    text-align: center;
    font-family: "PT sans Narrow", serif;
    font-weight: 700;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.collapsible:hover {
    background-color: #402F2D;
}

.content {
    padding: 2% 5% 2%;
    display: none;
    overflow: hidden;
    background-color: #F4A127;
}

.columns {
    grid-template-columns: 1fr 1fr;
    display: grid;
    column-gap: 50px;
    margin: 20px;
}

/* EXTRA */

h3#faves {
    font-style: normal;
    font-family: "Erica One", serif;
    font-weight: 200;
    color: #F9BD6D;
    text-align: left;
    letter-spacing: 3px;
    font-size: 90%;
    padding: 3% 5% 3%;
    margin: 0%;
}

h6#albums {
    font-family: "PT sans Narrow", serif;
    font-weight: 700;
    color: #F4A127;
    text-align: center;
    font-size: 40%;
    letter-spacing: 1px;
}

h6#rectangle {
    font-family: "PT sans Narrow", serif;
    font-weight: 400;
    color: #FFDBAD;
    font-size: 50%;
    letter-spacing: 1px;
    text-align: left;
    padding-left: 1%;
}

a#rectangle {
    font-family: "vina sans", serif;
    font-weight: 400;
    color: #261d1d;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 100%;
    padding: 0px 0px 0px 30px;
    top: 50%;
}

a#rectangle:hover {
    color: #F9BD6D;
    text-decoration: underline;
}

a#spotify {
    font-family: "vina sans", serif;
    font-weight: 400;
    color: #FFDBAD;
    text-align: center;
    font-size: 90%;
    letter-spacing: 1px;
    text-decoration: none;
}

a#spotify:hover {
    text-decoration: underline;
    color: #F9BD6D;
}

div#extra {
    background-color: #261d1d;
}

.image-fade {
    opacity: 1;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.container-fade {
    position: relative;
    width: 100%;
}

.container-fade:hover .image-fade {
    opacity: 0.3;
}

.container-fade:hover .middle {
    opacity: 1;
}

.active {
    flex-basis: 50%;
}

.rectangles {
    background-color: #F4A127;
    margin: 0 0 0.5%;
    width: 60%;
    padding: 1%;
    height: 100%;
}

#rectangle1 {
    width: 85%;
}

#rectangle2 {
    width: 75%;
}

#rectangle3 {
    width: 65%;
}

#rectangle4 {
    width: 55%;
}

#rectangle5 {
    width: 45%;
}

#grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
    grid: 1.44rem;
    gap: 1rem;
    text-align: center;
}

/* MEDIA QUERIES */

@media screen and (min-width: 450px) {
    #gallery {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 400%;
    }

    h2 {
        font-size: 180%;
    }

    h3 {
        font-size: 200%;
    }

    h3#faves {
        font-size: 120%;
    }

    h4 {
        font-size: 200%;
    }

    h6 {
        font-size: 150%;
    }

    h6#albums {
        font-size: 80%;
    }

    h6#rectangle {
        font-size: 60%;
    }

    a.top-header {
        font-size: 85%;
    }

    a#rectangle {
        font-size: 130%;
    }

    a#spotify {
        font-size: 120%;
    }

    #slide {
        width: 100%;
    }

    #text,
    figure#rumours {
        margin: 5%;
    }

    .image-box img {
        width: 100%;
        height: 170px;
    }
}

@media screen and (min-width: 600px) {
    #gallery {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    h1 {
        font-size: 600%;
    }

    h2 {
        font-size: 280%;
    }

    h3 {
        font-size: 250%;
    }

    h3#faves {
        font-size: 135%;
    }

    h4 {
        font-size: 130%;
    }

    h5 {
        font-size: 85%;
    }

    h6 {
        font-size: 200%;
    }

    h6#albums {
        font-size: 90%;
    }

    h6#rectangle {
        font-size: 90%;
    }

    p {
        font-size: 200%;
    }

    a.top-header {
        font-size: 170%;
    }

    a#rectangle {
        font-size: 190%;
    }

    a#spotify {
        font-size: 180%;
    }

    .middle {
        top: 45%;
    }

    .collapsible {
        font-size: 80%;
    }

    figure#rumours img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1;
    }

    div.column {
        padding: 3%;
    }

    .left-right {
        transform: translate(100%);
    }

    #slide {
        transition: transform 1s;
        width: 50%;
    }

    #text {
        margin: 2%;
    }

    figure#rumours {
        margin: 0%;
    }

    .image-box img {
        width: 100%;
        height: 260px;
    }
}

@media screen and (min-width: 800px) {

    h5 {
        font-size: 98%;
    }

    .collapsible {
        font-size: 90%;
    }
}

@media screen and (min-width: 1000px) {

    h1 {
        font-size: 750%;
    }

    h2 {
        font-size: 380%;
    }

    h3 {
        font-size: 300%;
    }

    h3#faves {
        font-size: 220%;
    }

    h4 {
        font-size: 180%;
    }

    h5 {
        font-size: 130%;
    }

    h6 {
        font-size: 250%;
    }

    h6#albums {
        font-size: 170%;
    }

    h6#rectangle {
        font-size: 130%;
    }

    p {
        font-size: 250%;
    }

    a.top-header {
        font-size: 200%;
    }

    a#rectangle {
        font-size: 250%;
    }

    a#spotify {
        font-size: 250%;
    }

    .middle {
        top: 45%;
    }

    .collapsible {
        font-size: 130%;
    }

    figure#rumours img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1;
    }

    div.column {
        padding: 3%;
    }

    .left-right {
        transform: translate(100%);
    }

    #slide {
        transition: transform 1s;
        width: 50%;
    }

    #text {
        margin: 2%;
    }

    figure#rumours {
        margin: 0%;
    }

    .image-box img {
        width: 100%;
        height: 370px;
    }
}

@media screen and (min-width: 1200px) {
    .collapsible {
        font-size: 150%;
    }
}

@media screen and (min-width: 1400px) {
    .collapsible {
        font-size: 200%;
    }

    h5#text {
        font-size: 230%;
    }

    .image-box img {
        width: 100%;
        height: 620px;
    }
}

@media screen and (min-width: 1700px) {
    .collapsible {
        font-size: 270%;
    }

    h5#text {
        font-size: 260%;
    }
}