table {
    text-transform: uppercase;
    text-align: center;
    width: 90%;
    margin-top: 7em;
}

td,
th {
    padding: 1em;
}

body,
html {
    height: 100%;
    overflow-x: hidden;
}


section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    align-items: center;
}

.background,
.background-inverted,
.background-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background-image: url('bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.9;
}

.background-inverted {
    transform: rotate(180deg);
    opacity: 0.1;
}

.background-2 {
    background-image: url('bg2.webp');
    background-size: cover;
    background-position: center;
}


header {
    padding: 1em;
    width: 90%;
}

.header-line-1 {
    display: flex;
}

.logo-container {
    display: flex;
    padding: 0 1em;
    height: 100%;
}

.line {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line svg {
    transform: scaleY(-1);
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
}

.title-container :nth-child(2) {
    padding: 0 .3em;
}

.logo {
    height: 10em;
    width: auto;
}

.videos {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.videos iframe {
    width: 20em;
    height: 14em;
    border-radius: 10%;
    margin: 1em;
}

.logo-container-2 .logo {
    height: 6em;
}

.hero,
.sub-hero {
    text-align: center;
    margin: 0 auto;
}



.hero {
    text-transform: uppercase;
    width: 60%;
    padding: 3em 0;
}

.hero :last-child {
    margin-top: 1.5em;
}

.sub-hero {
    height: 22vh;
    margin-top: auto;
    backdrop-filter: brightness(0.7);
    display: flex;
    justify-content: center;
}

.sub-hero p {
    width: 60%;
    margin-top: 3em;
}

.logo-container-2 {
    position: absolute;
    bottom: -53px;
    z-index: 10;
    border-radius: 50%;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}


th:nth-last-of-type {
    border: none;
}

.live-concerts {
    line-height: 2;
    padding: 1em 0;
    margin-top: auto;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-concerts p,
.bio {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.bio {
    margin: auto;
}

.contacts {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contacts :nth-child(4) {
    margin-bottom: 1em;
}

.social {
    height: 30vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.line {
    width: 80%;
    padding-top: 3em;
}

.links a {
    display: inline-block;
    height: 2em;
    margin: 0 0.25em;
}

.links a img,
.links a svg {
    height: 100%;
    width: auto;
}

.footer p span {
    text-decoration: underline;
}

.links {
    padding-top: 2em;
}

@media screen and (max-width: 768px) {
    header {
        width: 100%;
    }

    .logo {
        height: 7em;
    }

    .title-container {
        margin-top: 0;
    }


    .videos {
        flex-direction: column
    }

    .videos iframe {
        margin: 0;
        width: 17em;
        height: 11em;
    }

    .videos iframe:first-of-type {
        margin-bottom: 1em;
    }

    .sub-hero p {
        width: 80%;
    }

    .logo-container-2 {
        bottom: -35px;
    }

    .logo-container-2 .logo {
        height: 4em;
    }

    .live-concerts {
        line-height: 2;
        margin-top: 0;
        height: 36vh;
    }
}


@media screen and (max-width: 380px) {

    .live-concerts {
        line-height: 1.6;
        margin-top: 0;
        height: 36vh;
    }

    .videos iframe {
        margin: 0;
        width: 15em;
        height: 10em;
    }

}

@media screen and (max-height: 660px) {

    .videos :last-child {
        display: none;
    }

}