/* styles.css */

body {
  background-color: #FFD700; 
  margin: 0; 
  padding: 0; 
}

.header-style {
  background-color: #8C1515; 
  color: #FFD700; 
  padding: 10px;
  text-align: center;
}

.footer-style {
  background-color: #8C1515; 
  color: #FFD700; 
  padding: 10px;
  text-align: center;
}

.content-style {
  padding: 20px;
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  align-items: flex-start; 
}

.center-content {
  text-align: center;
  flex: 1 1 50%; 
  max-width: 50%; 
}

.center-content img {
  width: 200px; 
  height: auto;
  margin-bottom: 10px; 
}

#validation {
  text-align: center;
  margin-top: 100px;
}