@import url('https://fonts.googleapis.com/css2?family=Zeyada&family=Special+Elite&display=swap');
body {
  margin: 0;
  font-family: 'Special Elite', serif;
  background-color: #FDF0D5;
  color: #003049;
  background-image: url('images/images/백색 은 종이 텍스처를 배경으로 | 무료 사진.jpg'); 
  background-size: cover;
  background-attachment: fixed;
}

.password-screen {
  text-align: center;
  padding: 100px 20px;
  background-color: rgba(255, 255, 255, 0.8);
}

.password-screen input, .password-screen button {
  padding: 10px;
  margin: 10px;
  font-size: 1em;
}

nav {
  background-color: #780000;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #FDF0D5;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #669BBC;
}

.home-intro {
  padding: 40px;
  max-width: 700px;
  margin: auto;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #C1121F;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}
h1 {
  font-family: 'Zeyada', cursive;
  font-size: 3em;
  margin-bottom: 0;
}

.section-sub {
  font-style: italic;
  color: #669BBC;
  margin-top: -10px;
  margin-bottom: 30px;
  font-size: 1.2em;
  font-family: 'Special Elite', serif;
}

.entry {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #C1121F;
  padding: 20px;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
  transform: rotate(-1deg);
  position: relative;
}

.entry::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url('images/tape.png'); /* optional */
  background-size: cover;
  position: absolute;
  top: -10px;
  left: -10px;
  transform: rotate(15deg);
}
.template-box {
  margin-top: 60px;
  background-color: #fff;
  border: 2px dashed #003049;
  padding: 20px;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}

.template-box h2 {
  font-family: 'Special Elite', serif;
  font-size: 1.2em;
  color: #780000;
}

.template-box button {
  background-color: #C1121F;
  color: #FDF0D5;
  border: none;
  padding: 8px 16px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 10px;
  font-family: 'Special Elite', serif;
}

.template-box button:hover {
  background-color: #780000;
}

.template-box code {
  display: block;
  background-color: #f4f4f4;
  padding: 15px;
  font-size: 0.9em;
  overflow-x: auto;
  white-space: pre;
  border: 1px solid #ccc;
  font-family: 'Courier New', monospace;
}