@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

html {
  font-size: 32px;
  font-family: Pacifico, serif;
  letter-spacing: 0.04rem;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("./background.JPG");
  background-size: cover;
  background-position: center center;
}

.container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
}

.container--with-copy {
  padding: 1rem;
  border-radius: 2rem;
  background-color: hsla(0, 0%, 100%, 0.6);
}

.container--with-copy > *:first-child {
  margin-top: 0;
}

.container--with-copy > *:last-child {
  margin-bottom: 0;
}

input {
  width: 300px;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 0;
  background-color: hsla(0, 0%, 100%, 0.6);
  color: #333;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: inherit;
}

button {
  width: 300px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 100px;
  border: 0;
  background-color: hsl(39, 80%, 50%);
  color: hsl(39, 100%, 20%);
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  box-shadow: 3px 3px 0 0px hsl(39, 100%, 20%);
}

button:active {
  box-shadow: none;
  transform: translate(3px, 3px);
}
