@font-face {
  font-family: "NanumSquare";
  src: url("/fonts/NanumSquareR.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Baemin";
  src: url("/fonts/BMHANNAAir_ttf.ttf") format("truetype");
  font-weight: normal;
}

*, ::after, ::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'NanumSquare';
}

:root {
  --clr-white: #fff;
  --clr-dark-gray: #333333;
  --clr-light-gray: #f4f4f4;
  --clr-darker-gray: #666666;
  --clr-gray-2: #e0e0e0;
  --header-padding: 10px;
}

* {
  caret-color: rgba(0, 0, 0, 0);
}

body {
  /* font-family: Arial, sans-serif; */
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--clr-white);
  color: var(--clr-dark-gray);
  width: 100%;
  max-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding);
  /* flex: 0 1 auto; */
  position: sticky;
  top:0;
  flex: 0 1 auto;
  z-index: 500;
}

.logo {
  /* font-size: 1rem; */
  color: black;
}

.title {
  margin-left: 10px;
  margin-right: auto;
  
}

.title_link {
  font-family: Rubik;
  color: black;
  font-weight: bolder;
  font-size: 23px;
  /* width: 600px; */
  text-decoration:none;
}

.hamburger {
  display: none;
  caret-color: transparent;
}

.nav-bar {
  align-items: center;
  z-index:1000;
}

.nav-bar  ul {
  list-style-type: none;
  display: flex;  

}

.nav-bar ul  li  a {
  text-decoration: none;
  color: rgb(120, 120, 120);
  display: flex;
  height: 30px;
  margin: 0 5px;
  padding: 2px 5px;
  border-radius: 5px;
  transition: 0.1s;
  align-items: center;

}

.nav-bar  ul  li  a.active {
  color: var(--clr-white);
  /* background-color: rgb(122, 127, 137); */
  background-color: #00bbd4;
}

.nav-bar  ul  li  a:hover {
  color: rgb(53, 47, 47);
  font-weight: bold;
}

/* :root {
  --header-padding-2: 50px;
  --header-padding-2: 30px;
}


@media screen and (max-width: 800px) {
  .nav-bar {
      padding: 0 5px;
  }
} */

.privacy_txt {
  margin-right: 2rem;
}


@media screen and (max-width: 816px) {
  .hamburger {
      display: block;
      cursor: pointer
      
  }

  .hamburger .line {
      width: 30px;
      height: 3px;
      background-color: var(--clr-dark-gray);
      margin: 6px 0;
  }

  .nav-bar ul {
    display: block;
    position: absolute;
    /* height: 130px; */
    top: 2.6rem;
    left: min(70vw, 100vw-160px);
    right: 0;
    width: max(30vw, 160px);
    background-color: white;
    padding: 2px;
    transition: 0.5s;
    overflow: hidden;
    opacity: 0;
  }
  .nav-bar ul li{
    width: fit-content;
    margin: 0;
    padding: 0;
    text-align: center;
    /* transition: 0.5s; */
  }

  .nav-bar.active ul {
    height: 183px;
    opacity: 1;
  }

  .rotate90{
    transform: rotate(90deg);
    /* transition: 0.5s; */
  }

  .nav-bar {
    display: none;
  }

  .footer {
    font-size: 12px;
  }

  .privacy_txt {
    margin-right: 5px;
  }

}
.main {
  flex: 1 1 auto;
}

.container {
  width: 80%;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
  margin: 10px 0;
}

.container ul {
  margin: 10px 0;
  padding-left: 20px;
}

.container ul li {
  margin-bottom: 10px;
}


.footer {
  display: flex;
  padding: 0 10px;
  align-items: center;
  max-height: 3em;
  background-color: var(--clr-dark-gray);
  color: rgba(187, 192, 212, 0.812);
  text-align: center;
  width: 100%;
  z-index: 500;
  position: sticky;
  bottom: 0;
  flex: 1 0 3em;

}


.footer-left{
  margin-right: auto;
}
.footer-right {
  display: flex;;
  justify-items: space-between;
}

.footer-right a{
  text-decoration: none;
  color: rgba(187, 192, 212, 0.812);
}

.footer-right a:hover{
  text-decoration: none;
  color: white;
}