html, body {
  margin: 0;
  height: 100%;
}

body {
    display: grid;
    place-items: center;
    background-image: url("./image.png");
    background-repeat: no-repeat;
    background-position: 50% 60%;
    background-size: cover;
    

}

button {
    font-size: 3rem;
    color: white;
    background-color: red;
    font-weight: 800;
    border: none;
}

button:hover {
  background: #cc0000;
  box-shadow: 0 0 40px rgba(255, 0, 0, 1);
  transform: scale(1.05);
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;        
  text-align: center;
}

h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}
