body {
  margin: 0;
  background-color: #121212;
  color: #f5f5f5;
  font-family: Arial, sans-serif;
}
header {
  background-color: #1c1c1c;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}
nav a {
  color: #f5f5f5;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #ff0000;
}
section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
h1, h2 {
  color: #ff0000;
}
ul {
  list-style-type: square;
}
footer {
  background-color: #1c1c1c;
  padding: 10px;
  text-align: center;
  border-top: 2px solid #ff0000;

  .logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  height: 700px;
  width: 700px;
}
}