@font-face {
    font-family: 'Noto Sans Display', sans-serif;
    src: url(../web-fonts/notosansdisplay-variablefont_wdthwght-webfont.woff),
        url(../web-fonts/notosansdisplay-variablefont_wdthwght-webfont.woff2);
    font-display: swap;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: inherit;
    font-size: 15px;
    line-height: 1.5;
    box-sizing: border-box;
    font-weight: 400;
    overflow-x: hidden;
    font-family: 'Noto Sans Display', sans-serif;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
    font-weight: 200;
}

h1 {
    /*font-size: 6rem;
    letter-spacing: .25rem;
    text-align: center;
    font-family: 'Rubik Glitch', system-ui;*/
    visibility: hidden;
}

h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
}

@media (width <=640px) {
    h2 {
        text-align: center;
    }
}

h3,
h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-block: 1em 0;
    font-weight: 500;
}

@media (width <=640px) {
    h3 {
        font-size: 1.1125rem;
    }
}

img {
    display: block;
    max-width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #49f;
}

/* CONTENT STYLE */
.content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ROUND SWITCH CHECKBOX */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkboxSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.checkboxSlider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.checkboxSlider {
    background-color: #64c633;
}

input:focus+.checkboxSlider {
    box-shadow: 0 0 1px #64c633;
}

input:checked+.checkboxSlider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* round sliders */
.checkboxSlider.round {
    border-radius: 34px;
}

.checkboxSlider.round:before {
    border-radius: 50%;
}


/* COOKIE PAGE */

.cookieClose {
    text-decoration: none;
    float: right;
}

.cookieDialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1010;
    width: 100%;
    height: 100%;
    display: none;
}

.cookieOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1009;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
}

.cookieIn {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

.cookieBox h2 {
    margin: 10px 40px 15px 0;
}

.cookieBox {
    background: #fff;
    border-radius: 10px;
    margin: 30px;
    padding: 30px;
    margin: 0 auto;
    max-width: 700px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
}

.cookieDialog td {
    padding-right: 20px;
}

.cookieOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1009;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
}

/* cookie page - buttons */
.cookieNoticeButton {
    padding: .5rem 1rem;
}

.cookieNoticeButton.gray {
    color: #000;
    background: #fff;
}

.cookieNoticeButton.gray:hover {
    color: #000;
    background: #f0f0f0;
}

.cookieNoticeButton.green {
    color: #fff;
    background: #64c633;
}

.cookieNoticeButton.green:hover {
    background: #6fe434;
}

.nav-bar {
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #222;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
}

.first {
    max-width: 1200px;
    margin: 3rem auto;
    background-image: url(../img/bg/bg-hell2.webp);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.first>p {
    padding: 2rem 0;
    margin-left: 10%;
    background-color: #fff;
}

.founder p {
    font-size: 3rem;
    padding-left: 3em;
}

.founder-flex {
    display: flex;
}

.founder-flex>* {
    width: 100%;
}

.founder-flex img {
    border-radius: 50%;
    margin: 0 10%;
}

.founder-flex ul {
    list-style: none;
    font-size: 2.25rem;
}

@media (width <=640px) {
    .founder-flex {
        flex-wrap: wrap;
    }

    .founder-flex img {
        margin: 15px;
        width: 90%;
    }

    .founder-flex ul {
        margin: 15px;
    }

    .first>p {
        margin-left: 0;
        padding: 1rem;
    }
}

main {
    background-color: black;
}

.main-wrapper,
.wrap {
    display: grid;
    margin: 0 auto;
    padding: 3rem;
    max-width: 1200px;
}

.wrap-contents {
    display: flex;
    margin: 3rem auto;
    padding: 3rem 0;
    color: #fff;
    width: 100%;
    background-color: #000;
    box-shadow: -0px 5px 50px 1px rgba(255, 255, 255, 0.53);
}

.wrap-contents>* {
    width: 100%;
}

.list {
    padding: 0 2rem;
}

.list-unstyled,
.list-unstyled li,
.list-unstyled p {
    display: block;
    padding: .5rem 0;
    list-style-position: outside;
}

.list-unstyled p {
    font-size: 1.125rem;
}

figure {
    view-timeline-name: view;
    display: grid;
    place-content: center;
}

.develop-photo {
    animation: linear develop both;
    animation-timeline: view();
    animation-range: entry 30% cover 40%;
}

@keyframes develop {
    from {
        filter: blur(30px);
        scale: 2;
        opacity: 0;
    }

    to {
        filter: blur(0);
        scale: 1;
        opacity: 1;
    }
}

@media (width <=640px) {

    h1,
    h2,
    h3,
    h4,
    a {
        text-wrap: balance;
    }

    .wrap-contents {
        flex-wrap: wrap;
    }

    .list {
        padding: 1rem;
    }
}

.wrap-contents img {
    padding: 1rem;
    scale: 1.25;
    margin: auto;
}

.wrap-contents .image {
    display: grid;
    place-content: center;
}

.wrap-contents img:hover {
    scale: 1.15;
}

.list-unstyled,
li {
    list-style: none;
}

.list-unstyled li {
    padding: .5em;
}

figure {
    view-timeline-name: view;
    display: grid;
    place-content: center;
}

.develop-photo {
    animation: linear develop both;
    animation-timeline: view();
    animation-range: entry 30% cover 40%;
}

@keyframes develop {
    from {
        filter: blur(30px);
        scale: 2;
        opacity: 0;
    }

    to {
        filter: blur(0);
        scale: 1;
        opacity: 1;
    }
}

@media (width <=640px) {
    .second {
        padding: 6rem 1rem;
    }

    .second h2 {
        padding-left: 0;
    }
}

.second {
    background-image: linear-gradient(to right top, #666, #000 40%, #000 45%, #555);
    padding: 2rem 0;
}

#songs {
    background-image: url(../img/releases/cover-sugandmel.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.live {
    background:
        url(../img/releases/cover-memorabilia.jpg);
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.live::after {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    background:
        linear-gradient(to right top, #666, #000 40%, #000 45%, #555);
    z-index: -1;
}

.live .wrap {
    margin-block: 3rem;
}

.song-list,
.stuff,
.gigs {
    margin-block: 3rem;
}

.stuff li,
.gigs li {
    list-style: decimal-leading-zero;
    list-style-position: inside;
    color: #fff;
    padding: .5em;
}

.song-list {
    display: grid;
    grid-auto-flow: dense;
    gap: 1rem 2rem;

    color: #fff;
}


.card {
    max-width: 60%;
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.7);
}

.card h4 {
    font-size: 1.25rem;
    margin-bottom: .5em;
}

.card p {
    width: 100%;
    text-transform: capitalize;
}

.card P:nth-of-type(1) {
    width: 50%;
}

.card-o {
    position: relative;
}


.card-o a {
    font-weight: 700;
    color: #49f;
    padding: 1rem;
    display: block;
    background-color: #fff;
}

.card-o {
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border: inset 5px #333;
    border-radius: 5px;
    background-image: linear-gradient(to right bottom, #666, #000 40%, #000 45%, #555);
}

.card h4,
.card-o h4 {
    font-size: 1.25rem;
    margin-bottom: .5em;
}

@media (width <=640px) {
    .songs {
        padding: 0;
    }

    .card h4,
    .card-o h4 {
        font-size: 1.125rem;
    }
}


footer {
    background-color: #000;
    padding: 3rem 0;
    color: #fff;
}

.copy {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.copy p {
    max-width: 75ch;
}

.copy a {
    width: auto;
    height: 120px;
    display: flex;
    align-items: center;
}

.copy a>img {
    display: block;
    padding: .5rem
}

@media (width <=640px) {
    .copy {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .copy a {
        width: 45%;
    }
}