html {
  font-family: "Nunito";
  color: #2F3333;
}

body {
  margin: 0;
  background: white;
}

/* Headings */
h1 {
  font-size: 60px;
  margin: 0;
}

h2 {
  font-size: 35px;
  margin: 0
}

h3 {
  font-size: 25px;
  margin: 0;
}

h4 {
  font-size: 20px;
  margin: 0;
}

h5 {
  font-size: 20px;
  margin: 0;
  opacity: 0.7;
}

h6 {
  font-size: 15px;
  margin: 0;
}

@media only screen and (max-width: 750px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 18px;
  }
}

/* A tag */
a {
  font-family: "Nunito";
  font-size: 20px;
  border: none;
  background: none;
  color: #F56888;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
}

@media only screen and (max-width: 750px) {
  a {
    font-size: 18px;
  }
}

/* Span */
span {
  color: #F56888;
  cursor: pointer;
}

/* Input */
input {
  padding: 5px 10px;
  font-family: "Nunito";
  font-size: 20px;
  outline: none;
  border: none;
  border: solid 1px rgba(200, 200, 200, 1);
  border-radius: 500px;
  color: #2F3333;
}
input::placeholder {
  color: rgba(200, 200, 200, 1);
}

textarea {
  padding: 5px 10px;
  font-family: "Nunito";
  font-size: 20px;
  outline: none;
  border: none;
  border: solid 1px rgba(200, 200, 200, 1);
  border-radius: 15px;
  color: #2F3333;
}
textarea::placeholder {
  color: rgba(200, 200, 200, 1);
}

@media only screen and (max-width: 750px) {
  input {
    font-size: 18px;
  }

  textarea {
    font-size: 18px;
  }
}

/* Button */
button {
  padding: 5px 10px;
  font-family: "Nunito";
  font-size: 20px;
  color: white;
  background: #F56888;
  outline: none;
  border: none;
  border-radius: 500px;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  button {
    font-size: 18px;
  }
}

.spacer {
  height: 25px;
}
