
* {
  color: black;
  text-align: center;
  cursor: crosshair;
}

@font-face {
  font-family: 'JFDotK14';
  src: url('fonts/JF-Dot-K14-Regular.woff2') format('woff2'), 
  url('fonts/JF-Dot-K14-Regular.woff') format('woff');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

body {
  width: 750px;
  height: 750px;
  padding: 0px;
  margin: auto;
  background-color: lightgray;
  font-family: 'JFDotK14', serif;
  font-size: 14px;
}

#container {
  width: 750px;
  height: auto;
  border: 2px solid black;
  background-color: gray;
  padding: 0px;
}

#header, #nav, #content, #footer {
  background-color: white;
} 

#content {
 display: flex; 
}

#column1, #column2, #column3 {
 border: 1px solid black;
 padding: 0px;
}


