@media only screen and (min-width: 600px) {
    body {
        height: 100vh;
        overflow: hidden;
    }
}
body,
body *{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

.container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 0px 1fr 0px 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "rwo"
    "kickers"
    "teutonia";
}
@media only screen and (min-width: 600px) {
    .container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 0px 1fr 0px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        gap: 0px 0px;
        grid-auto-flow: row;
        grid-template-areas:
    "rwo kickers teutonia";
    }
}
.leagues {
    background: #000000;
    height: 50px;
    width: 100vw;
    padding: 20px;
    position: relative;
    z-index: 3;
    text-align: center;
}
@media only screen and (min-width: 600px) {
    .leagues {
        position: fixed;
        bottom: 50px;
        text-align: left;
    }
}

.leagues .logo{
    width: 100px;
    display: inline-block;
}

.footer{
    position: relative;
    bottom: 0;
    background: #000000;
    height: 50px;
    width: 100vw;
    z-index: 3;
    padding: 20px;
    color: #FFF;
    font-family: 'Gilroy';
    padding: 10px 20px;
}
@media only screen and (min-width: 600px) {
    .footer {
        position: fixed;
    }
}

.footer a {
    color: #0ff;
    text-decoration: none;
}
.video {
    position: fixed;
    z-index: 0;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
}
@media only screen and (min-width: 600px) {
    .video {
        position: absolute;
    }
}
.video .video__inner{
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    text-align: center;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.video video{
    width: auto;
    height: 100vh;
    display: inline-block;
}

.only-desktop{
    display: none !important;
}

@media only screen and (min-width: 600px) {
    .only-mobile{
        display: none !important;
    }
    .only-desktop{
        display: block !important;
    }
}

h2{
    margin: 10px 0;
    color: #FFF;
    font-size: 1.4rem;
    font-family: 'Gilroy';
}


.button{
    color: #fff;
    padding: 5px 20px;
    display: table;
    text-align: center;
    font-size: 1.1rem;
    height: auto;
    text-transform: uppercase;
    font-weight: 700;
    background: -webkit-gradient(
            linear,left top, left bottom,from(#4a90e2),to(#0076ff));
    background: -o-linear-gradient(
            top,#4a90e2,#0076ff);
    background: linear-gradient(
            180deg,#4a90e2,#0076ff);
    max-width: 90%;
    border-radius: 20px;
    cursor: pointer;
    margin: 5px auto;
    text-decoration: none;
    font-family: 'Gilroy';
}
@media only screen and (min-width: 600px) {
    .button{
        margin: 25px auto;
    }
}

ul{
    list-style: none;
}
ul li{
    color: #FFF;
}


.club {
    position: relative;
    z-index: 2;
    text-align: center;
    height: calc(33vh - (90px / 3));
}

.club img{
    display: inline-block;
    height: 50%;
}

@media only screen and (min-width: 600px) {
    .club {
        padding-top: 10vh;
        height: 100vh;
    }
    .club img{
        display: inline-block;
        width: 80%;
        height: unset;
        -webkit-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .club:hover img{
        width: 90%;
    }
}

@media only screen and (min-width: 600px) {
    .club {
        height: 100vh;
    }
}

.rwo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: rwo;
    background: #910f12;
    background: -o-linear-gradient(135deg, rgba(237, 53, 58, 0.6), rgba(203, 31, 36, 0.6), rgba(171, 39, 43, 0.6), rgba(145, 15, 18, 0.6));
    background: linear-gradient(-45deg, rgba(237, 53, 58, 0.6), rgba(203, 31, 36, 0.6), rgba(171, 39, 43, 0.6), rgba(145, 15, 18, 0.6));
}

.kickers {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: kickers;
    background: #02233c;
    background: -o-linear-gradient(135deg, rgba(0, 101, 178, 0.6), rgba(2, 35, 60, 0.6));
    background: linear-gradient(-45deg, rgba(0, 101, 178, 0.6), rgba(2, 35, 60, 0.6));
}

.teutonia {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: teutonia;
    background: -o-linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(16, 16, 16, 0.6));
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.6), rgba(16, 16, 16, 0.6));
}

@media only screen and (min-width: 600px) {
    .rwo {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .kickers {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .teutonia {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
}
.experience{
    display: none;
}
@media only screen and (min-width: 600px) {
    .experience {
        display: block;
        font-family: 'Gilroy';
        color: #0ff;
    }
}
