body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('logo_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 0;
  height: 100vh;
}

.container {
  position: relative;
  padding-top: 500px; /* 👈 This moves everything down */
}

h1 {
  font-size: 2.8em;
  margin-bottom: 0.3em;
  text-shadow: 1px 1px 3px black;
}

p {
  font-size: 1.2em;
  margin-top: 0;
  text-shadow: 1px 1px 2px black;
}

ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  margin: 1em 0 2em 0;
  text-shadow: 1px 1px 2px black;
}

.button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  box-shadow: 1px 1px 5px black;
}

.button:hover {
  background-color: #0056b3;
}
