/*
 * style.css
 */


body 
{ 
    font-family: 'Courier New', monospace; 
    color: white;
}


.cols {
    display: flex;
}


.fifty {
    flex: 50%;
}


.remark-slide-content 
{
    /*
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    */
    background-color: #000;
}


a
{
    color: white;
    text-decoration: none;
}


/* columns */

.column:first-of-type 
{
    float:left;
}

.column:last-of-type {float:right}

.split-40 .column:first-of-type {width: 40%}
.split-40 .column:last-of-type {width: 60%}

.split-50 .column:first-of-type {width: 50%}
.split-50 .column:last-of-type {width: 50%}

.split-60 .column:first-of-type {width: 60%}
.split-60 .column:last-of-type {width: 40%}


.column p {
    padding: 5px;
}

.column ul {
    font-size: small;
}


