/* ±âº» ¼³Á¤ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* Çì´õ */
header {
  background-color: #2c3e50;
  color: white;
  padding: 16px 24px;
  text-align: center;
}

/* ¸ÞÀÎ ÄÜÅÙÃ÷ */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 80px;
}


h1 {
  font-size: 28px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
}

/* h1 ¾ÈÀÇ ¸µÅ©µµ h1Ã³·³ º¸ÀÌ°Ô ¼³Á¤ */
h1 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover {
  text-decoration: underline; /* ÇÊ¿ä½Ã È£¹ö È¿°ú */
}


/* °Ô½Ã±Û ¹Ú½º */
.post {
  background: white;
  margin-bottom: 30px;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.post h2 {
  margin-top: 0;
  font-size: 22px;
  color: #34495e;
}

.post .date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* ÇªÅÍ */
footer {
  background-color: #ecf0f1;
  color: #555;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 14px;
}

   main img {
    max-width: 100%;
  }


/* ¹ÝÀÀÇü Ã³¸® */
@media (max-width: 768px) {
  header {
    padding: 12px 16px;
    font-size: 18px;
  }

  main {
    padding: 20px 12px;
  }
  
  h1 {
    font-size: 22px;
  }

  .post h2 {
    font-size: 18px;
  }

  footer {
    font-size: 13px;
    padding: 16px;
  }
}

.site-logo img {
	width: 140px;
}
