:root{
  --color-primary: #2c1600;
  --color-accent: #0d8f00;
  --bg-primary: #e6e0d7;
  --bg-secondary: #D7E6D8;
  --bg-tertiary: #D7DCE6;
  --selection-color: #dfc4a7;
}
*{
  box-sizing: border-box;
  word-break: keep-all;
}
*::selection{
  background: var(--selection-color);
}
body::-webkit-scrollbar {
  display: none;
}

html, body{
  height: 100%;
  width: 100%;
  margin: 0;
  display: block;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.6;
  background: var(--bg-primary);
  text-wrap: pretty;
}
img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
}
picture{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
}
video{
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-size: cover;
}
.text{
  text-align: left;
}
.text-display{
  font-size: 24px;
}
.text-big{
  font-size: 18px;
}
.text-normal{
  font-size: 16px;
}
.text-small{
  font-size: 12px;
}
.italic{
  font-style: italic;
}
.bold{
  font-weight: 500;
}
.centre{
  text-align: center;
}
.right{
  justify-self: right;
}
.justify{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.half{
  width: 50%;
}
.content{
  padding: 0 2%;
}
.flex-centre{
  display: flex;
  justify-content: center;
  align-items: center;
}
.border{
  border: 1.5px solid white;
}
.main{
  width: 100vw;
  height: auto;
}
.menu{
  position: fixed;
  top: 0;
  right: 0;
  padding: 1% 2%;
  z-index: 100;
}
.menu ul{
  list-style: none;
  display: flex;
  align-items: center;
}
.menu a{
  font-family: "IBM Plex Sans KR", sans-serif;
  padding: 2px 12px;
  background-color: white;
  border: 1px var(--color-primary) solid;
  border-radius: 16px;
  text-decoration: none;
  margin-left: 12px;
  cursor: pointer;
  color: var(--color-primary);
  font-style: italic;
}
.menu a:hover{
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.menu #toggleLang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Sans KR", sans-serif;
  width: 40px;
  height: 40px;
  border: 1px var(--color-primary) solid;
  border-radius: 50%;
  font-style: normal!important;
}
.menu-toggle{
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: white;
  color: var(--color-primary);
  font-size: 24px;
  cursor: pointer;
}
#this-page{
  background-color: black;
  border-color: var(--bg-primary);
  color: var(--bg-primary);
}
.lang {
  display: none;
}
.lang.active {
  display: block;
}
.ticket{
  position: fixed;
  background-color: rgba(28, 28, 28, 0.3);
  border: 1.5px solid var(--bg-primary);
  bottom: 48px;
  right: 2%;
  padding: 6px 16px;
  mix-blend-mode: exclusion;
  z-index: 100;
}
.ticket a{
  text-decoration: none;
  color: var(--bg-primary);
}
.ticket:hover {
  mix-blend-mode: normal;
  border-color: #ff0083;
  background-color: transparent;
}
.ticket:hover a{
  color: #ff0083;
}
.final-footer{
  width: 100%;
  height: 32px;
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: right;
  border-top: 1px solid var(--color-primary);
}

@media (orientation: portrait) {
  .half{
    width: 100%;
  }

}
@media screen and (max-width: 1024px){

}
@media screen and (max-width: 780px){
  .menu{
    position: fixed;
    top: 16px;
    right: 16px;
    padding: 0;
    z-index: 100;
  }

  .menu-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 2; /* stays above the menu */
  }

  .menu ul{
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    flex-direction: column;
    align-items: flex-end;

    margin: 0;
    padding: 0;
  }

  .menu ul.active{
    display: flex;
  }

  .menu li{
    margin-bottom: 10px;
  }

  .menu a{
    margin: 0;
  }
}
@media screen and (max-width: 500px){
  .content{
    padding: 0 3%;
  }
  .text-display{
    font-size: 20px;
  }
  .text-big{
    font-size: 16px;
  }
  .text-normal{
    font-size: 14px;
  }
  .text-small{
    font-size: 10px;
  }
  .ticket{
    right: 5%;
    padding: 4px 12px;
  }
  .final-footer{
    height: 24px;
    padding: 0 3%;
  }
}
