body {
  padding: 0;
  margin: 0;
  background-color: #408080;
  text-align: center;
  color: #282822;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

body > h1 {
  font-size: 3rem;
  color: rgba(236, 240, 241, 1);
}

.main {
 
  background-color: rgba(236, 240, 241, 0.5);
  width: 70%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  text-align: left;
  row-gap: 10px;
  padding: 1rem;
}

button {
  border: none;
  padding: 10px;
  background-color: #34495e;
  font-size: 1rem;
  font-weight: bold;
  color: rgba(236, 240, 241, 1);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s ease;
}

button:hover {
  transform: scale(105%);
}

input {
  border: 1px solid rgba(40, 60, 65, 0.9);
  padding: 5px;
  border-radius: 3px;
  outline: none;
  color:rgba(25, 31, 32, 0.9);
  min-width: 4rem;
}