:root {
    --font-body: "Barlow", sans-serif;
    --font-title: "blancnote-sans", sans-serif;
}

body {
    background-color: #fff;
}

.backgroundimg {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -999;
    width: 100%;
    filter: contrast(10);
}

.title-logo {
    max-width: 256px;
    margin: auto;
    border-radius: 0 !important;
}

#main {
    max-width: 720px;
    min-width: 256px;
    width: 75%;
    margin: auto;
    margin-top: 30vh;
    padding: 48px;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px 32px;
}
.gallery > section {
    width: 35%;
    display: flex;
    padding: 32px;
    flex-grow: 1;
}
.gallery h3 {
    margin-bottom: 24px;
}
.gallery h2 {
    margin-top: 18px;
}

section > img {
    width: 100%;
    border-radius: 8px;
}

section {
    transition: 0.2s ease-out;
    background-color: #fff;
    padding: 64px;
    border: 2px solid #000;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px #000;
}

.title-section {
    text-align: center;
}

.button-list {
    margin: auto;
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
    flex-grow: 1;
}

h3.mainpage-date {
    text-align: center;
    margin-bottom: -40px;
}

h3, h4, h5, h6, p {
    font-family: var(--font-body);
    font-weight: 300;
}

h3 {
    color: #0007;
}

h2, h3 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px;
}

h1 {
    font-family: var(--font-title);
    font-weight: 100;
    font-size: 36px;
    text-align: center;
}

button {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    margin: auto 8px;
    box-shadow: 0 0 #000;
}

button:hover {
    cursor: pointer;
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px #000;
}

button:active {
    box-shadow: 0 0 #000;
    transform: translate(0, 4px);
}

.instagram, .twitter, .bluesky, .soundcloud, .discord {
    min-width: 64px;
    width: 100%;
    height: 64px;
    margin: 0;
}

.instagram {
    background-image: url('/assets/socials/ig.png');
    background-size: 64px;
    background-position: center;
}
.instagram:hover {
    background-image: url('/assets/socials/ig-fill.png');
}

.twitter {
    background-image: url('/assets/socials/twt.png');
    background-size: 64px;
    background-position: center;
}
.twitter:hover {
    background-image: url('/assets/socials/twt-fill.png');
}

.bluesky {
    background-image: url('/assets/socials/bsky.png');
    background-size: 64px;
    background-position: center;
}
.bluesky:hover {
    background-image: url('/assets/socials/bsky-fill.png');
}

.soundcloud {
    background-image: url('/assets/socials/sc.png');
    background-size: 64px;
    background-position: center;
}
.soundcloud:hover {
    background-image: url('/assets/socials/sc-fill.png');
}

.discord {
    background-image: url('/assets/socials/ds.png');
    background-size: 64px;
    background-position: center;
}
.discord:hover {
    background-image: url('/assets/socials/ds-fill.png');
}

a {
    color: #000;
}
a:hover {
    cursor: pointer;
    color: #00f;
}

h4 {
    text-align: center;
    margin: 0;
    margin-bottom: 24px;
    color: #0007;
}

a > button {
    width: 100%;
    margin: 0;
}