@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,600&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #FEE715;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background-color: #9FADBD;
}

body::after {
  content: "@yejinc";
  display: block;
  margin-top: 50px;
  color: #331B3F;
  font-size: 12px;
  font-weight: 600;
}

.subscription {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: center;
  padding: 32px 56px;
  border-radius: 6px;
  text-align: center;
  background-color: #101820;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.25);
}

.subscription h1 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #FEE715;
}

.subscription p {
  color: #FCF1CA;
}

.input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.input-group input {
  width: 240px;
  height: 36px;
  padding: 0 12px;
  border: none;
  border-radius: 4px;
  margin-right: 4px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  background-color: #f6f8fa;
  color: #333e47;
}

.input-group input:focus,
.input-group button:focus {
  box-shadow: none;
  outline: none;
}

.input-group input::placeholder {
  color: #b6bec8;
}

.input-group button {
  height: 36px;
  padding: 0 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: #111;
  background-color: #FEE715;
}
