* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgb(32, 32, 32);
  background: url(./992152fad24829ee61c087db4d061875.jpg) no-repeat center/cover;
  color: white;
  min-height: 100vh; /* ensures full height center */
  font-family: Arial, sans-serif;
  flex-wrap: wrap;
}
/* Add min-height: 100vh to body if you want it vertically centered on all screen sizes. */

div .container{
  background: black;
  margin: 30px auto;
  padding: 50px;
  font-size: 1.5rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 10px white;
  border-radius: 13px;
  border: 2px solid;
}

p, h2{
  font-style: italic;
  margin: 20px auto;
}
button {
  background: rgb(224, 81, 224);
  background: rgb(114, 250, 205);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 30px;
  border: none;
  color: aliceblue;
  color: black;
  transition: background 0.3s, box-shadow 0.3s;
}

button:hover {
  cursor: pointer;
  box-shadow: 0 0 20px purple;
  background: rgb(160, 3, 160);
  color: white;

}
@media (max-width:500px){

  div{width: 100%;
  }
 h1{
  font-size: 2rem;
 }

}

