:root {
--darkcolor: black;
--mediumcolor: ;
--lightcolor: #D3D3D3;
}

p {
   margin-left: 30px;
}

body, td{
  text-align: center;
  font-family: verdana, helvetical, ariel;
  font-size: 12px;
  background-color: var(--darkcolor);
}

td {
  background-color: #878f99;
  border: 1px;
  border-style: solid;
  border-color: gray;
}

h1 {
  font-size: 250%;
	text-align: center;
	}
	
a {
  color: gold;
  text-decoration: underline;
  font-weight: bold;
}

a:hover {
  color: white;
  text-decoration: underline;
  background: gold;
}

#main {
  margin-left: auto;
  margin-right: auto;
  width: 980px;
  background: #878f99;
  border: 2px;
  border-color: #6b5b95;
  border-style: solid;
}

#main #logo {
  font-size: 350%;
  font-weight: bold;
  padding-top: 1px;
  padding-bottom: 2px; 
  letter-spacing: 0.65cm;
}

#main #contact {
  height: 100px;
}

#main #contact #category {
  width: 24%;
  float: left;
  text-align: right;
  font-weight: bold;
}

#main #contact #value {
  width: 24%;
  float: left;
  text-align: left;
  padding: 1%;
}

#main #content {
  margin: 10px;
  text-align: left;
  background-color: #878f99;
  padding: 20px;
}

#main #content #picture {
  float: right;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 10px;
  margin-bottom: 10px;
  border:1px solid #000;
  padding: 0px;
  width: 125px;
  height: 143px;
}

#main #footer {
  text-align: center;
  background-color: #878f99;
  padding: 7px;
}

.indent {
  margin-left: 10px;
}

.newspaper {
    -ms-column-count: 2; 
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;

    -ms-column-gap: 40px;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

.left {
  width: 40%;
  align-items: center;
}

.right {
  width: 40%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.container {
    display: table;
}

.child {
    display: table-cell;
    width: 33.33%;
}