@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

body, div, h1, p {
  margin: 0;
  padding: 0;
}

.contact {
   border-bottom: 3px solid #C7974D;
}

body {
  width: 100%;
  height: 100vh;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

section {
  width: 100%;
  height: 100vh;
  background-color: #24242D;
  color: #ffffff;
}

.content{
  margin-left: 100px;
}

.container-section {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.ornamen img {
  width: 23px;
  height: auto;
  margin-top: 280px;
  margin-left: 50px;
  position: absolute;
}

.section1 {
  width: 30%;
  margin-top:  140px;
  margin-left: 100px;
}

.section1 h1 {
  font-size: 65px;
  font-family: "Righteous";
  margin-left: -70px;
  padding-right: 50px;
}

.section1 p {
  padding-right: 20px;
}

.section2 {
  border-left: 8px solid #DEDEE5; 
  border-radius: 5px;
  margin-top:  130px;
}

.section3 {
  width: 100%;
  margin-top:  140px;
  margin-left: 50px;
}

input {
  padding: 10px;
  font-size: 1em;
  width: 100%;
  border-radius: 15px;
  border-color: transparent;
  color: #022453;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
}

input::placeholder {
  color: #615C50;
}

form {
  width: 85%;
}

textarea{
  padding: 10px;
  padding-bottom: 70px;
  font-size: 1em;
  width: 100%;
  resize: none;
  border-radius: 15px;
  border-color: transparent;
  color: #022453;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

textarea::placeholder {
  color: #615C50;
}

button {
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
  color: #ffffff;
  padding:  10px 15px 10px 15px;
  border-radius: 25px;
  float: right;
  background-color: #C7974D;
  border-color: transparent;
}

button:hover {
  border-color: #ffffff;
  background-color: transparent;
  color: #C7974D;
}

@media only screen and (max-width: 839px) {
  .container-section {
    display: block;
    flex-direction: column;
  }

  section {
    height: auto;
  }

  .content {
    margin-left: 60px;
  }

  .ornamen img {
    margin-top: 245px;
    margin-left:30px;
  }

  .section1 {
    display: block;
    margin-top: 0;
    padding-top: 120px;
    width: 60%;
  }

  .section1 h1 {
    padding: 0;
    font-size: 50px;
  }

  .section1 p {
    padding: 0;
  }

  .section2 {
    width: auto;
    margin-right: 70px;
    border-left: 0;
    border-bottom: 3px solid #DEDEE5;
    border-radius: 0;
    margin-top: 80px;
  }

  .section3 {
    margin-left: 0;
    margin-top: 80px;
    margin-bottom: 100px;
    padding-bottom: 100px;
  }

}