body {
    margin: 0;
}

.left {
    float: left;
    background-color: #1f1f1f;
    font-family: Comfortaa, Arial;
    font-weight: bold;
    font-size: 50px;
    box-sizing: border-box;
    color: white;
    width: 50%;
    text-align: center;
    height: 100vh;
    padding-top:40vh;

}

.right {
    text-align: center;
    float: right;
    color: white;
    font-family: Comfortaa, Arial;
    box-sizing: border-box;
    font-size: 50px;
    font-weight: bold;
    height: 100vh;
    padding-top:40vh;
    width: 50%;
    background-color: hsl(0, 0%, 12%);
}


.middle {
    position: absolute;
    background-color: rgb(104, 104, 104);
    filter: drop-shadow(0px 0px 10px #838383);
    height: 100vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
