* {
    box-sizing: border-box;
    /*font-family: 'Courier New', Tahoma, Verdana, sans-serif;*/
}

body 
{
    background-color: black;
    color: white;
}

.col-1 {width: 25%;}
.col-2 {width: 50%;}
.col-3 {width: 75%;}
.col-4 {width: 100%;}

.col-1-centered
{
    width: 33.33%;
    text-align: center;
}

.col-4-gray
{
    display: flex;
    width: 100%;
    height: 5%;
    background: #1A1A1A;
    align-items: center;
    justify-content: center;
}

.col-4-spacer
{
    width: 100%;
    height: 15%;
}

.col-4-spacer-small
{
    width: 100%;
    height: 5%;
}

.divider
{
    width: 100%;
    height: 4px;
    padding: 0px;
    background: #1A1A1A;
}

[class*="col-"]
{
    float: left;
    padding: 15px;
    /*border: 1px solid red;*/
} 

@media only screen and (max-width: 768px) {
    /* For mobile, stack vertically */
    [class*="col-"] {
      width: 100%;
    }
  }

.row::after
{
    content: "";
    clear: both;
    display: table;
}

a
{
    color: white;
    text-decoration: none;
    font-family: 'Courier New', Tahoma, Verdana, sans-serif;
}

a:hover
{
    font-weight: bold;
}

.copy
{
    color: dimgray;
    font-family: 'Courier New', Tahoma, Verdana, sans-serif;
    font-size: 10px;
}

.content
{
    color: dimgray;
    width: 45%;
    clear: both;
    float: none;
    text-align: left;
    font-size: 1em;
    font-family: Arial, 'Times New Roman', Tahoma, Verdana, sans-serif;
    /*border: 1px solid red;*/
}

.clear
{
    clear: both;
}
