#left {
    position: absolute;
    background-color: white;

    height: 100%;
    width: 50%;
    left: 0px;
    margin-left: 15%;

    .border {
        border: 1px solid black;
    }




}


#right {
    position: absolute;
    background-color: white;

    height: 100%;
    width: 50%;
    left: 50%;

    margin-left: 15%;



}

#title {
    background-color: tan;
    height: 80px;
    margin-top: -25px;
    margin-left: -10px;
    margin-right: -10px;


    .x {
        position: absolute;
        width: 50%;
        left: 10px;
    }

    .y {
        position: absolute;
        width: 50%;
        right: 0px;
        text-align: right;
        padding-right: 10px;

    }
}

.center {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}