.contact-section{
  /* display: flex;
  justify-content: space-between; */
  margin-right: auto;
  margin-left: auto;
}

.form-container {
  width:30%;
  margin-top: 1em;
  margin-bottom: 2em;
}

.contact-form {
  width: 100%;
  min-width: 156px;
}

.form-container h1{
  margin-bottom: .25em;
}

.form-text {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  padding-top: 1em;
}

.form-text input {
  border-radius: 0.5em;
  border: solid black 1px;
  font-family: "Degular Display", sans-serif;
  font-size: .8em;
  padding: 0.9em;
  margin-top: 0.5em;
}

.form-text textarea {
  border-radius: 0.5em;
  border: solid black 1px;
  font-family: "Degular Display", sans-serif;
  font-size: .8em;
  padding: 0.9em;
  margin-top: 0.5em;
}

.form-action {
  margin-top: 1em;
  display: flex;
  gap: 0.8em;
  justify-content: left;
}

.btn {
  width: 50%;
  display: inline-block;
  color: white;
  cursor: pointer;
  font-family: "Degular Display";
  font-weight: 300;
  font-size: 1em;
  background-color: black;
  border: none;
  border-radius: 0.5em;
  padding: 0.5em 1em;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  background-color: #0f8c85;
}

/* SOCIAL MEDIA STYLING */

.socials-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 3em;
  align-items: center;
}

.social-media{
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

.social-media a{
  color: black;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.social-media a:hover{
  color: #0f8c85;
}

.social-media img{
  margin-left: 1.5em;
  height: 2.5em;
}

@media screen and (orientation:portrait){
  .contact-section{
    flex-direction: column;
  }

  .form-container{
    width: 100%;
  }

  .socials-container{
    align-items: center;
  }
}