* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 20px;
}

header {
  width: 100%;
}

.logo{

 display: block;
 margin-left: auto;
 margin-right: auto;
}

h2{
 color: #2196f3;
 font-size: 44px;
 text-align: center;
 padding: 20px;
}


form {
  max-width: 600px;
  margin: auto;

}

form label {
  display: block;
  margin: 10px 0 5px;
  color: #2196f3;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 7px;
  transition: border-color 0.3s;
  box-shadow: 0.3s;
}

textarea {
  min-height: 7.5rem;
  resize: vertical;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  outline: none ;
  border-color: #2196f3;
  box-shadow:#2196f3;
}

form button {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 7px;
  transition: 0.3s;
  float: right;
}

button:hover,
button:focus {
  background-color: #2196f3;
  outline: none;
}

button:disabled {
  cursor: not-allowed;
  background: #c6c6c6;
}

.success {
  color: #2196f3;
  text-align: center;
  margin-top: 50px;
}

.erro {
  color: tomato;
  text-align: center;
  margin-top: 50px;
}


@media screen and (max-width: 768px) {

  h3 {
    text-align: center;
    margin-top: -110px;
  }

  p {
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
  }

  .container-contato {
    padding: 20px;
  }


  #contato {
    padding: -50px;
  }

  #contato {
    margin-top: -150px;
  }

  #contato h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
  }
  

}