* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


header {
  background-color: #2c3e50;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 4px solid #e74c3c;
}

header img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

header h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

main {
  width: 65%;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

main ul {
  list-style-type: none;
  text-align: center;
}

main ul li {
  margin: 20px 0;
  padding: 15px;
  background-color: #ecf0f1;
  border-left: 5px solid #e74c3c;
  text-align: center;
}

main ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
}

main ul li a:hover {
  color: #e74c3c;
  text-decoration: underline;
}

footer {
  background-color: #2c3e50;
  padding: 20px;
  text-align: center;
  border-top: 4px solid #e74c3c;
  margin-top: auto;
}

footer p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #bdc3c7;
}