/* Retro Geek Repairs Styles */

body {
  background-color: #000;
  color: #f5f5f5;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

header {
  background-color: #555;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #000;
}

header h1 {
  font-size: 3em;
  margin: 0;
}

nav {
  background-color: #222;
  font-size: 1.5em;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #B22222;
  margin: 0 15px;
  text-decoration: none;
}

.section {
  font-size: 1em;
  padding: 25px;
  border-bottom: 1px solid #B22222;
}

.section h2 {
  font-size: 1.9em;
  color: #B22222;
}

footer {
  background-color: #222;
  text-align: center;
  padding: 10px;
  font-size: 0.8em;
  border-top: 2px solid #000;
}

img.header-image {
  max-width: 100%;
  height: auto;
  border: 3px solid #000;
}

/* Responsive font size for smaller screens */
@media only screen and (max-width: 768px) {
  body {
    font-size: 1em;
  }

  header h1 {
    font-size: 3em;
  }

  nav {
    font-size: 2em;
  }

  .section h2 {
    font-size: 2em;
  }

  footer {
    font-size: 0.6em;
  }
}