* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { 
  margin: 0;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100vh;
  font-family: sans-serif;
}

.navbar,
.navitem,
.menu a {
  font-family: 'East Sea Dokdo', sans-serif;
} 

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  font-family: 'East Sea Dokdo', sans-serif;
  background-color: rgb(125, 227, 252);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-size: 40px;
  height: 10vh;
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.navitem {
  color: white;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}

.label {
    font-family: 'East Sea Dokdo', sans-serif;
    font-size: 100px;
    
}

.poster {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f6b26b 0%, #f9a858 100%);
  padding: 60px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.path {
  height: 60px;
  border-top: 10px dashed #8b5a2b;
  border-right: 10px dashed #8b5a2b;
  border-radius: 0 50px 0 0;
  margin-bottom: 10px;
}

.section {
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.line {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.x {
  color: #ff0000;
  font-size: 50px;
  font-weight: bold;
}

.label {
  margin: 0 0 10px 0;
  color: #000000;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}

.dash {
  flex: 1;
  height: 10px;
  background-image: repeating-linear-gradient(
    to right,
    #8b5a2b,
    #8b5a2b 15px,
    transparent 15px,
    transparent 25px
  );
  margin: 0 15px;
}

.box {
  background: rgba(255, 255, 255, 0.95);
  }

.box.large {
  height: 150px;
  font-size: 45px;
  font-family: 'East Sea Dokdo', sans-serif;
  text-align: center;
}

.box.small {
  height: 100px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
