body {
    margin: 0;
    font-family: 'Audiowide', cursive;
    font-size: 18px;
    overflow: hidden;
}

/* Combine Column Count and Width */
.two-col {
    -webkit-columns: 2 250px;
    -moz-columns: 2 250px;
    columns: 2 250px;
    padding: 10%;
}

/* Just Column Count */
.two-col-count {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

/* Just Column Width */
.two-col-width {
    -webkit-column-width: 250px;
    -moz-column-width: 250px;
    column-width: 250px;
}

.content {
    display: flex;
    flex-direction: row;
}

.left {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 50%;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    height: 100vh;
    overflow-y: auto;
    color: white;
}

.right {
    display: flex;
    flex-direction: column;
    flex: 50%;
    height: 100vh;
    overflow-y: auto;
}

h4 {
    font-weight: normal;
    font-size: 18px
}

h4::first-letter {
    color: #b70001;
    font-size: 40px;
}

@media (max-width: 900px) {

    body {
        overflow: auto;
    }

    .content {
        flex-direction: column;
    }

    .left, .right {
        height: auto;
    }

    .right {
        overflow-y: scroll;
    }


}
