  html {
  height: 100%;
  width: 100%;
}

p {
  text-align: center;
  font-size: 30px;
}

body {
  margin: 0;
  padding: 0;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color:#17151e;
}

.image img {
  max-width: 100%;
  height: auto;
  align-items: center;
}



main {
  flex: 1;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
}

button {
  padding: 10px;
  border-radius: 5px;
  border: none;
  color: #000;
  background-color: #c9daff;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 5px;
  margin-right: 5px;
}

h1 {
  color: #958cd9;
  text-align: center;
  margin-top: 30px;
  font-family:Arial;
  font-size: 7vw;
}

@media (max-width: 600px) {
  h1 {
    font-size: 50px;
  }

  .buttons button {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}

.paragraph {
  background-color: #2b2b2b;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  text-align: center;
  font-size: calc(16px + 0.2vw);
}

footer {
  width: 200%;
  bottom: 100%;
  left: 0;
  background-color: #525252;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

a {
  text-decoration: none;
  color: #ff73f2;
}

.container {
  text-align: center;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

button {
  padding: 25px 50px;
  font-size: 40px;
  border: none;
  border-radius: 10px;
  background-color: #6f42c1;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #edd9ff;
  box-shadow: 0 0 20px #919fe8;
}