* {
  padding: 0;
  margin: 0;
}

.container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#UserData {
  width: 400px;
  padding: 50px;
  background-color: #fff;
  box-shadow: 1px 1px 20px 1px #a9a9a9;
  border-radius: 20px;
}

h1 {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

input[type="submit"] {
  height: 40px;
  margin-top: 15px;
  width: 100px;
  border-radius: 10px;
  background-color: #2c2c2c;
  color: #fff;
  transition: transform 0.5s;
}

input[type="submit"]:hover {
  transform: scale(1.1);
}
