* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  background-color: rgb(238, 221, 200);
  overflow: hidden;
}

.header {
  margin-top: auto;
}

p {
  font-size: 5rem;
  margin-bottom: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

button {
  padding: 10px 20px;
  font-size: 1.5rem;
  position: relative;
  color: #e3e3e3;
  background-color: rgb(19, 19, 19);
  cursor: pointer;
  border: 0;
  border-radius: 7px;
  align-self: center;
  margin-bottom: 20px;
  width: 21rem;
}

@media only screen and (max-width: 600px) {
  .header {
    margin-top: 10rem;
  }

  h3 {
    font-size: 4rem;
    min-height: 60px;
  }

  h4 {
    font-size: 2.5rem;
  }

  button {
    padding: 8px 16px;
    position: relative;
  }

  input {
    padding: 8px 16px;
    width: 290px;
  }
}

#random-text {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

input {
  border-radius: 7px;
  position: fixed;
  padding: 10px 20px;
  height: 20px;
  margin-bottom: 100px;
  font-size: 1.5rem;
  width: 18.2rem;
}

footer {
  display: flex;
  justify-content: end;
  align-items: end;
  margin-top: auto;
  margin-bottom: 0;
}

footer p {
  font-size: 1rem;
}

footer a {
  margin-left: 5px;
}

h4 {
  font-size: 3rem;
  margin-top: 40px;
}
