body{
    margin:0;
    color: #c20519;
    background-color: black;

}

.footer_icons {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cover {
    position: relative;
    height: 25rem;
    width: 25rem;
}

.layer-full { z-index: 9999999 }

.layer-1 { z-index: 7; }

.layer-2 {
    z-index: 6;
    mix-blend-mode: lighten;
}

.layer-3 {
    z-index: 5;
    mix-blend-mode: screen;
}

.layer-4 {
    z-index: 4;
    mix-blend-mode: multiply;
}

.layer-5 {
    z-index: 3;
    mix-blend-mode: exclusion;
}

header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 5vh;
    max-height: 5vh;
    overflow: hidden;
}

header span {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

header span a {
    display: flex;
    align-items: center;
    height: 100%;
}

header span img {
    height: 100%;
    width: auto;
    max-height: 100%;
}

.layer-6 { z-index: 2; }

.layer-7 { z-index: 1; }

@supports (mix-blend-mode: plus-lighter) {
    .layer-3 { mix-blend-mode: plus-lighter; }
}

@supports (mix-blend-mode: plus-darker) {
    .layer-4 { mix-blend-mode: plus-darker; }
}

content{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0.5rem 0
}

main{
    min-height: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin: 0 12.5%;
}

footer{
    margin-top: 1rem;
}

.footer_text {
    text-align: center;
}

.footer_icons {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    height: 5vh;
    max-height: 5vh;
    overflow: hidden;
}

.footer_icons_light,
.footer_icons_dark {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    width: 100%;
    min-height: 0;
    overflow: hidden;
}
.footer_icons_light {
    display: flex;
}
.footer_icons_dark {
    display: none;
}


.footer_icons_light > div,
.footer_icons_dark > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    height: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
}

footer img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.text-content{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 1rem 0;
}

.subtitle{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.location{
    display: flex;
    justify-content: flex-end;
}

.credits{
    display: flex;
    justify-content: center;
}

.dj-set{
    display: flex;
    justify-content: flex-end;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

a:hover {
    color:rgb(226, 32, 51);
    text-decoration: underline;
}