* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  transition: 0.2s;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 30rem;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

button {
  display: block;
  width: 100%;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  height: 40px;
  border-radius: 10px;
  font-size: 25px;
  margin: 10px 0px;
}