* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alan Sans", sans-serif;
  background-color: #222831;
}

main {
  padding: 1rem;
  min-height: 100vh;
  color: #eee;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

h1 {
  font-size: 5rem;
}

h1, 
h2 {
  user-select: none;
}

h2 {
  font-size: 2rem;
}

h1 span {
  color: #76ABAE;
}

form {
  background-color: #31363F;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: .5rem;
}

input, button {
  padding: 1rem;
  font-size: 1rem;
  border-radius: .5rem;
  border: none;
}

input {
  background-color: transparent;
  border: 2px solid #76ABAE;
  color: #fff;
  outline: none;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

button {
  display: inline-block;
  width: 200px;
  background-color: #76ABAE;
  letter-spacing: .1rem;
  font-weight: 900;
  cursor: pointer;
  color: white;
}

button:last-child {
  background-color: #105357;
}
