body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

header {
  border: 4px solid red;
  padding: 40px;
  text-align: center;
  background-color: white;
  max-width: 800px;
  margin-top: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

p {
  margin: 10px 0;
  font-size: 18px;
}

a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.gif-container {
  text-align: center;
  margin: 30px 0;
}

.gif-container img {
  max-width: 90%;
  height: auto;
  border: 2px solid red;
  border-radius: 8px;
}
