﻿.side{
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: absolute;
}

.side .title {
    font-family: "Rubik", sans-serif;
    font-size: 8vw;
    margin: 0px 15vw;
    width: 70vw;
}

.side .fancy{
    font-family: "Lobster", cursive;
    font-size: 1.3em;
    line-height: 0.8em;
}

#left-side{
    background-color: black;
    z-index: 2;
}

    #left-side .title {
        color: darkred;
    }

#left-side .fancy {
    color: gray;
}

#right-side {
    background-color: darkgray;
}

#right-side .title {
    color: black;
}

#right-side .fancy {
    color: darkred;
}