* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Caveat", cursive;
}

h1 {
  font-size: 5rem;
  color: cadetblue;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-image: linear-gradient(
      180deg,
      rgb(255 255 255) 0%,
      rgb(157 153 153 / 26%) 100%
    ),
    url(./images/bcg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header {
  padding: 2rem;
}

.name_greeting {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.text {
  font-size: 3rem;
  font-weight: 700;
}

.name_input {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input_group {
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.input_name {
  border: none;
  outline: none;
  padding: 1rem 3rem 1rem 1rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.btn {
  padding: 1rem 1.5rem;
  outline: none;
  border: none;
  background: #a9c0fa;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-0.2rem);
  background: #6c96ff;
}

.footer {
  padding: 2rem;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
