/* BASIC css start */
/* ±âº» ½ºÅ¸ÀÏ */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* °¡·Î ½ºÅ©·Ñ ¹æÁö */
}

h1, h2 {
  margin: 0;
}

h1 span {
  display: block;
  margin-top: -5px;
}


/* °øÅë p ÅÂ±× ½ºÅ¸ÀÏ */
p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* ÆÐ·²·¢½º ÄÁÅ×ÀÌ³Ê */
.parallax-container {
  position: relative;
  width: 100%;
  min-height: 100vh; /* ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
  overflow: hidden;
  display: flex;
  align-items: center; /* ÅØ½ºÆ®¸¦ Áß¾Ó Á¤·Ä */
  justify-content: center;
}

/* ÆÐ·²·¢½º ¹è°æ */
.parallax-background {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* ÅØ½ºÆ® ÄÁÅÙÃ÷ */
.content {
  position: relative;
  text-align: center;
  z-index: 1;
  color: #fff;
  max-width: 80%;
}

.content h1, .content h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

/* ÅØ½ºÆ® ¼½¼Ç */
.text-section {
  padding: 80px 20px;
  background-color: #222;
  text-align: center;
}

.text-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

/* ÇªÅÍ */
footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}

/* BASIC css end */

