@import "../styles/index.css";

* {
  margin: 0;
}
body {
  width: 100%;
  height: 100vh;
}
.contact-section {
  padding: 20px;
  margin-top: 20px;
  padding: 60px 0;
  height: 75vh;
  margin-bottom: 80px;
}

.contact-section h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 3em;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
}

.contact-form-text {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  border: 0;
  background: rgb(207, 204, 204);
  padding: 20px 40px;
  border-radius: 20px;
  outline: none;
  color: black;
  font-size: 1.5em;
  transition: 0.8s ease-in;
}
.contact-form-text:focus {
  box-shadow: 0 0 10px 4px #34495e;
}
textarea.contact-form-text {
  resize: none;
  height: 120px;
}
.contact-form-btn {
  display: inline-block;
  margin-top: 1em;
  border: 0;
  background-color: rgb(7, 96, 197);
  background-color: #03afc2;
  color: white;
  letter-spacing: 2px;
  line-height: 1;
  font-size: 20px;
  padding: 12px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
}
.contact-form-btn:hover {
  background: rgb(6, 47, 51);
}

.foot {
  padding: 10px;
}
@media screen and (max-width: 450px)  {
  .contact-section{
   margin-bottom: 200px;
  }
}