body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5dc;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #d35400;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}

a {
  display: block;
  width: 200px;
  text-align: center;
  padding: 16px;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  margin: 10px;
}

a:hover {
  background: #c0392b;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

.Cursos {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Cursos a {
  background-color: #4CAF50;
  margin: 10px;
  text-align: center;

}

.Cursos a:hover {
  background-color: #337235;
}

button {
  display: block;
  justify-content: center;
  width: 200px;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
