.setion_1_area {
  margin-top: 80px;
  width: 100%;
  height: 800px;
  background-color: antiquewhite;
  background-image: url("../img/back_img.jpeg");
  background-size: cover;
  background-position: 50% 10%;
  background-repeat: no-repeat; /* 이미지 반복 제거 */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.section_1_title {
  color: white;
  font-size: 50px;
  text-align: center; /* 텍스트를 가로 중앙 정렬 */
  border-bottom: 4px solid;
  border-color: rgba(255, 129, 74, 1);
}

.section_1_text.desktop  {
  color: rgba(255, 255, 255, 0.9);
  font-size: 25px;
  text-align: center; /* 텍스트를 가로 중앙 정렬 */
  display: block;
}

.section_1_text.mobile {
  color: rgba(255, 255, 255, 0.9);
  font-size: 25px;
  text-align: center; /* 텍스트를 가로 중앙 정렬 */
  display: none;
}


.section_1_text_2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 30px;
  text-align: center; /* 텍스트를 가로 중앙 정렬 */
}

.btn {
  border-radius: 25px;
  padding: 15px 40px 10px 40px;
}

.btn-danger {
  background-color: rgba(255, 129, 74, 1);
  border: rgba(255, 129, 74, 1);
}

.btn-danger:hover {
  background-color: rgba(243, 103, 48, 1);
  border: rgba(243, 103, 48, 1);
}

@media (max-width: 430px) {
  .section_1_title {
    font-size: 30px;
  }

  .section_1_text.desktop {
    display: none; /* 데스크톱 텍스트 숨김 */
  }

  .section_1_text.mobile {
    display: block; /* 모바일 텍스트 표시 */
    font-size: 12px;
  }
  
  .btn {
    border-radius: 25px;
  }
}
