:root {
    --container-bg-color: #000;
    --left-bg-color: rgba(0, 0, 0, 0);
    --left-button-hover-color: rgba(0, 255, 0, 0.3);
    --right-bg-color: rgba(0, 0, 0, 0);
    --right-button-hover-color: rgba(88, 101, 244, 0.3);
    --hover-width: 50%;
    --other-width: 50%;
    --speed: 500ms;
}

html, body {
    padding:0;
    margin:0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.centerH1 {
    color: #fff;
    font-size: 3rem;
    z-index: 90;
    position: absolute;
    top: 20px;
    text-align: center;
    width: 100%;
}

.centerLogo {
    z-index: 89;
    position: relative;
    display:block;
    top: 60px;
    width: 100%;
    height: auto;
    max-width: 30%;
    max-height: 600px;
    filter: drop-shadow(25px 25px 25px #000);
    margin-left: auto;
    margin-right: auto;

}

.logoHolder {
    position: absolute;
    width: 100%;
    height: auto;
    top: 20px;
    height:auto;
}

.h1 {
    font-size: 4rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.h2 {
    font-size: 2rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding-top: 1rem;
}

.button {
    display: block;
    position: absolute;
    left: 50%;
    top: 80%;
    height: 2.5rem;
    padding-top: 1.3rem;
    width: 50%;
    text-align: center;
    color: #fff;
    border: #fff solid 0.1rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateX(-50%);
}

.split.left .button:hover {
    background-color: var(--left-button-hover-color);
    border-color: var(--left-button-hover-color);
}

.split.right .button:hover {
    background-color: var(--right-button-hover-color);
    border-color: var(--right-button-hover-color);
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--container-bg-color);

}

.split {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.split.left {
    left: 0px;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,1)),
      url('../images/green-left.webp') center center no-repeat;
    background-size: 100%;
}


.split.left:before {
    position:absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--left-bg-color);
}

.split.right {
    right: 0px;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,1)),
      url('../images/green-right.webp') center center no-repeat;
    background-size: 100%;
}

.split.right:before {
    position:absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--right-bg-color);
}

.split.left, .split.right, .split.right:before, .split.left:before {
    transition: var(--speed) all ease-in-out;
}

.hover-left .left {
    width: var(--hover-width);
}

.hover-left .right {
    width: var(--other-width);
    filter: blur(8px);
      -webkit-filter: blur(8px);
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,1)),
      url('../images/green-right.webp') center center no-repeat;
    background-size: 100%;
}

.hover-left .right:before {
    z-index: 3;
}


.hover-right .right {
    width: var(--hover-width);
}

.hover-right .left {
    width: var(--other-width);
    filter: blur(8px);
      -webkit-filter: blur(8px);
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,1)),
      url('../images/green-left.webp') center center no-repeat;
    background-size: 100%;
}

.hover-right .left:before {
    z-index: 2;
}

@media(max-width: 800px) {
    .h1 {
        font-size: 2rem;
        white-space: normal;
        text-align: center;
    }

    .centerH1 {
        font-size: 1.5rem;
    }

    .centerLogo {
        max-width: 100px;
    }

    .h2 {
        font-size: 1rem;
        white-space: normal;
        text-align: center;
        padding-top: 1.5rem;
    }

    .button {
        width: 240rem;
    }
}

@media(max-height: 825px) {
    .button {
        top: 70%;
        width: 24rem;
    }
}
