.bangers {
  font-family: "Bangers", cursive;
  font-weight: 400; /* Bangers only has one weight */
  font-style: normal;
  background-color: rgb(247, 133, 192);
  color: rgb(255, 0, 217);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

div {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}

input {
  height: 50px;
  width: 100px;
  font-size: larger;
  text-align: center;
  background-color: rgb(247, 133, 192);
  color: white;
  border: 2px solid rgb(255, 0, 217);
  border-radius: 5px;
}

button {
  padding: 20px 40px;
  background-color:rgb(255, 0, 217);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Bangers", cursive;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  background-color: #044304; 
}
.body{
  color: pink;
  background-color: pink;
}