body {
  font-family: Arial, sans-serif;
  
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #000000;
}
.sponsors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  background-color: #000000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.671);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5%;
  margin-top: 2.5%;
}
.sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ffffffad;
  border-radius: 8px;
}
.sponsor img {
  max-width: 100%;
  max-height: 100px;
}
.body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  display: grid;
  place-items: center;
  min-height: 100vh;
  background-color: #f0f0f0; /* Background color to contrast the button */
}

button {
  padding: 25px 30px;
  background-color: #050801;
  color: #03e9f4;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  letter-spacing: 4px;
  overflow: hidden;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

button:hover {
  background: #03e9f4;
  color: #050801;
  box-shadow: 0 0 5px #03e9f4,
              0 0 25px #03e9f4,
              0 0 50px #03e9f4,
              0 0 200px #03e9f4;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

footer {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #050801;
  color: #ffffff;
  position: absolute;
  bottom: 0;
}