body {
  margin: 0;
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 50px;
  font-weight: bolder;
  line-height: 20px;
}

h1b {
  font-size: 70px;
  font-weight: bolder;
  line-height: 30px;
}

h3 {
  font-size: 20px;
  font-weight: bolder;
  line-height: 20px;
}

header {
  background-color: #7b1e1e;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, #000, #7b1e1e);
  color: white;
  text-align: center;
  padding: 1rem 1rem;
}

.hero img {
  max-width: 100%;
  height: auto;
}

.buttons {
  margin-top: 1rem;
}

.buttons button {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.register {
  background-color: white;
  color: #7b1e1e;
  border: 2px solid #7b1e1e;
}

.schedule {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.about {
  padding: 2rem;
  background-color: #f8f8f8;
  text-align: center;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.1rem;
}

.info-card {
  background-color: #7b1e1e;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  width: 200px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-image {
    flex: 1;
    z-index: 1;
  }
}
.selectedmenu {
	color: #000;
}
