body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}
header {
    background: #b30000;
    color: white;
    padding: 10px;
    text-align: center;
}
nav {
    background: #333;
    padding: 10px;
    text-align: center;
}
nav a {
    color: white;
  font-size: 2rem; /* or larger if desired */
  margin: 0 15px;
  font-weight: 600;
  text-decoration: none;
}
main {
    padding: 20px;
}
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}

.logo {
  width: 100px;   /* Set a consistent width */
  height: auto;
}



@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }

  .header h1 {
    margin: 10px 0;
    text-align: center;
  }
}