@charset "utf-8";
/* CSS Document */

/* 기본 설정 */
body {
  font-family: 'Pretendard', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #f7f5f2;
}

.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 20px;
}

button {
  padding: 12px 20px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background-color: #ef9c58;
  color: white;
}

button:hover {
  background-color: #ffd5b8;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 480px) {
  .container {
    padding: 20px 10px;
  }

  button {
    width: 100%;
    font-size: 14px;
  }
}

.recruit-section {
  margin-top: 30px;
  text-align: center;
}

.recruit-section h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}
