body {
  font-family: "Courier New", Courier, monospace;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 10px;
  font-size: 14px;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utilities */
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.red {
  color: red;
}
.uppercase {
  text-transform: uppercase;
}

/* Layout Containers */
.container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Top Section (Left + Center) */
.top-section {
  display: flex;
  justify-content: center; /* Center the main content */
  align-items: flex-start;
  padding-bottom: 20px;
  position: relative;
  min-height: 200px;
}

.top-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  text-align: left;
}

.top-left img {
  border: 1px solid black;
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.top-center {
  text-align: center;
  max-width: 600px;
}

.main-headline {
  font-size: 3em; /* Huge */
  font-weight: 900;
  line-height: 0.9;
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
}

.main-headline-img {
  max-width: 100%;
  border: 1px solid black;
  margin-bottom: 5px;
}

/* Center Stack (List of important headlines) */
.center-stack {
  text-align: center;
  margin: 20px 0 40px 0;
}

.center-stack ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.center-stack li {
  margin-bottom: 8px;
  font-size: 1.2em;
  text-transform: uppercase;
}

.logo {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  font-size: 4em;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: -2px;
  display: block;
}

/* Bottom 3 Columns */
.columns-container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.column {
  width: 32%;
  box-sizing: border-box;
  padding: 0 5px;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column li {
  margin-bottom: 8px;
  line-height: 1.3;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

.column-img {
  max-width: 80px;
  float: left;
  margin-right: 8px;
  margin-bottom: 4px;
  border: 1px solid #000;
}

/* Responsive */
@media (max-width: 768px) {
  .top-section {
    flex-direction: column;
    align-items: center;
  }

  .top-left {
    position: static;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .columns-container {
    flex-direction: column;
  }

  .column {
    width: 100%;
    margin-bottom: 20px;
  }

  .main-headline {
    font-size: 2em;
  }
}
