@font-face {
  font-family: "Dot-Matrix-Bold";
  src: url("/fonts/DotMatrix-ExpandedBold.otf");
  font-display: swap;
}

@font-face {
  font-family: "Dot-Matrix-Regular";
  src: url("/fonts/DotMatrixDuo-Regular.otf");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
/*  font-family: "Times New Roman", Times, serif; */
  font-family: "Dot-Matrix-Regular";
  font-size: 5vw;
}

/* Style the header */
.header {
  background-color: #f1f1f1;
  padding: 30px;
  text-align: center;
  font-size: 10vw;
  font-family: "Dot-Matrix-Bold";
/*  text-transform: full-width; */
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
}

/* Create three unequal columns that sits next to each other */
.column {
  padding: 10px;
  text-align: center;
}

/* Left and right column */
.column.side {
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* Middle column */
.column.middle {
  font-family: "Courier New", "monospace";
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.column.middle h1 {
  font-family: "Monospace";
  font-size: 15vw;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
  font-size: 1vw;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
