body {
	width: 100%;
	margin: 0 auto 0;
	font-family: 'Poppins', sans-serif;
}

h1 {
  font-size: 3.5em;
  color: #68026E;
  line-height: 1;
}

p {
  font-size: 35px;
  color: #68026E;
  font-family: 'Roboto', sans-serif;
}

.section {
  width: 100%;
  height: 1000px;
  text-align: center;
  align-items: center;
}

.hero {
  width: 100%;
  height: 100%;
  background-image: url("https://catanifi.com/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.col-3 {
  display: block;
  margin: auto auto;
  width: 50%;
  padding: 150px;
}

/* Form Style */
form {
  margin-top: 50px;
}

.field {
  color: RGBA(234,224,213,.5);
  background-color: RGBA(44,54,63,.6);
  border: 1px solid #2C363F;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center;
  padding: 15px 0;
}

.btn {
  color: #2C363F;
  background-color: #EAE0D5;
  border: 1px solid #EAE0D5;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 13px 0;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  color: #EAE0D5;
  background-color: #1282A2;
  border-color: #1282A2;
  letter-spacing: 1px;
}

@media only screen and (min-width: 1251px) {
  .field {
    width: 50%;
  }
  .btn {
    width: 20%;
  }
}

@media only screen and (max-width: 1250px) {
  .field {
    width: 100%;
  }
  .btn {
    width: 100%;
    margin-top: 10px;
  }
}
