:root {
    --main-blue: rgba(9, 17, 80, 1);
    --main-blue-65: rgba(9, 17, 80, .65);
    --main-orange: rgba(250, 132, 3, 1);
    --main-orange-50: rgba(250, 132, 3, .5);
}
@font-face {
    font-family: 'Soccer';
    src: url('../fonts/SoccerLeagueCollege-Regular.eot');
    src: url('../fonts/SoccerLeagueCollege-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SoccerLeagueCollege-Regular.woff2') format('woff2'),
        url('../fonts/SoccerLeagueCollege-Regular.woff') format('woff'),
        url('../fonts/SoccerLeagueCollege-Regular.ttf') format('truetype'),
        url('../fonts/SoccerLeagueCollege-Regular.svg#SoccerLeagueCollege-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Reset. */
* {
    box-sizing: border-box;
}

html {
    font-size: calc(15px + 0.390625vw);
}
body {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

/* Panels. */
.splitview {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.panel {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.panel .content {
    position: absolute;
    width: 100vw;
    height: 100vh;
    color: #FFF;
}

.panel .description {
    width: 25%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.panel .img {
    /*box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);*/
    width: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.bottom {
    background-color: var(--main-blue);
    z-index: 1;
}

    .bottom .description {
        right: 5%;
    }

.top {
    background-color: var(--main-orange);
    z-index: 2;
    width: 50vw;

    /*-webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);*/
}

.top .description {
    left: 5%;
}

/* Handle. */
.handle {
    height: 100%;
    position: absolute;
    display: block;
    background-color: rgb(253, 171, 0);
    width: 5px;
    top: 0;
    left: 50%;
    z-index: 3;
}

/* Skewed. */
.skewed .handle {
    top: 50%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}

.skewed .top {
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

.skewed .top .content {
    transform: skew(30deg);
    margin-left: 1000px;
}

.cheerleaderlogo, .footballlogo{
    width: 25vw;
}

/* Responsive. */
@media (max-width: 900px) {
    body {
        font-size: 75%;
    }
}
.home-text {
    position: absolute;
    z-index: 3;
    top: 10vh;
    /* left: 50%; */
    transform: translate(-50%, -50%);
    color: white;
    font-family: Soccer;
    font-size: 3rem;
    text-shadow: 4px 2px 5px black;
    width: 100%;
    text-align: center;
    margin-left: 50%;
    margin-right: 50%;
}
.status {
    position: absolute;
    z-index: 3;
    bottom: 5vh;
    transform: translate(-50%, -50%);
    color: white;
    font-family: Soccer;
    font-size: 3rem;
    text-shadow: 4px 2px 5px black;
    width: 100%;
    margin-left: 50%;
    margin-right: 50%;
    text-align: center;
}
.email {
    position: absolute;
    z-index: 9;
    right: 20px;
    bottom: 15px;
    color: white;
    padding: 5px;
    background: var(--main-orange);
    border-radius: 50%;
}