@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6d860;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

h1 {
  margin: 3rem 0 5rem 0;
}

.input {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

label {
  text-align: center;
  font-size: 1.5rem;
}

#input-text {
  width: 80%;
  max-width: 35rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  background-color: #f7f7f7;
  text-align: center;
  padding: 0.7rem 1rem;
  margin: 1rem 1rem 2rem 1rem;
}

.btn {
  outline: none;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  margin-bottom: 3rem;
  background-color: #95cd41;
  color: #12130f;
  cursor: pointer;
}

.qr-code {
  border-top: 0.5rem solid #8f8073;
  border-right: 0.5rem solid #8f8073;
  border-bottom: 1rem solid #8f8073;
  border-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-left: 0.5rem solid #8f8073;
  background-color: #8f8073;
}
.qr-code button {
  display: flex;
  justify-content: center;
  background-color: #8f8073;
  font-family: "Poppins", sans-serif;
  color: #eae6e5;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  margin-top: 1rem;
}
.qr-code button a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #eae6e5;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
