@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");
* {
  font-family: "poppins", "verdana";
  box-sizing: border-box;
}

body {
  background:linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)), url("https://images.unsplash.com/photo-1533563906091-fdfdffc3e3c4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  color: #fff;
}

.container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yo {
  align-self: flex-start;
  margin-left: 380px;
}

.yo h3 {
  text-align: center;
}

input {
  border-radius: 40px;
  border: none;
  outline: none;
}

button {
  border: none;
  border-radius: 12px;
  padding: 10px 30px;
  color: #000;
  background-color: #3da5a0;
  width: 100%;
}