@font-face {
    font-family: GideonRoman-Regular;
    src: url(GideonRoman-Regular.ttf);
}

body {
    background-color: black;
    color: white;
    text-align: center;
    font-size: 32px;
    font-style: italic;
    font-family: GideonRoman-Regular;
}

#parent {
    overflow: hidden;
    height: 100%;
}

#left {
    float: left;
    width: 25%;
    max-height: 25%;
    position: fixed;
}

#right {
    float: right;
    height: 25%;
    max-height: 25%;
    position: fixed;
    overflow-wrap: break-word;
}

@media only screen and (max-device-width: 480px) {
    body {
        font-size: 24px;
    }
}