body {
  font-family: 'Libre Franklin', sans-serif;
  margin: 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 10px;
}

p, h2 {
  text-align: left;
  margin: 0 0 var(--space-medium) 0;
  padding: 0;
  line-height: 1.5;
  color: #111111;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 10px;
}

.part-two {
  text-align: center;
  margin: 0 0 var(--space-medium) 0;
  padding: 0;
  line-height: 1.5;
  color: #111111;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 10px;
}

.email {
  color: #000;
  font-weight: bold;
}
.soon {
  color: #000;
  font-weight: bold;
}

.container {
  align-items: center;
  margin: auto;
  max-width: 900px;
  padding-top: 80px;
  text-align: center;
}

form {
  display: flex;
  margin: 30px auto 0;
  width: 600px;
}

input {
  border: 1px solid #C2D3FF;
  border-radius: 50px;
  padding: 15px 20px;
  flex: 7;
  margin-right: 10px;
}

input:focus {
  border-color: #4D7BF3;
  outline: none;
}

input::placeholder {
  color: #C2D3FF;
}

button {
  background: #4D7BF3;
  box-shadow: 0 4px 12px 0 #b0c6ff;
  border: none;
  border-radius: 50px;
  color: #FFF;
  cursor: pointer;
  flex: 3;
  padding: 15px 0;
  transition: all 150ms ease-in-out;
}

button:hover {
  outline: none;
  background: #7195f5;
}

button:focus {
  outline: none;
}

.warning {
  display: none;
  color: hsl(354, 100%, 66%);
  font-style: italic;
  font-size: 14px;
  margin-left: -300px;
  margin-bottom: 0;
}
.show .warning{
  display: block;
}

.show input {
  border: 1px solid hsl(354, 100%, 66%);
}

.illustration img {
  margin-top: 70px;
  width: 50%;
}

.social {
  width: 150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  margin-top: 80px;
}

.social a {
  color: #4D7BF3;
  border: 1px solid #dce6ff;
  border-radius: 50%;
  padding: 10px;
}

.social a:hover {
  background: #4D7BF3;
  color: #FFF;
}

.fab {
  font-size: 20px;
  height: 20px;
  width: 20px;
}

.copyright {
  color: #BBB;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .illustration img {
    width: 90%;
  }
}

@media (max-width: 700px) {
  .container {
    margin: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  form {
    flex-direction: column;
    width: 80%;
  }

  input {
    flex: 0;
    margin-bottom: 15px;
    margin-right: 0;
  }

  button {
    flex: 0;
  }

  .warning {
    margin-left: 0;
  }

  .social {
    margin-top: 90px;
  }
}

