@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Pacifico&display=swap:wght@100..900);
@import url(https://fonts.googleapis.com/css2?family=Lexend+Exa&display=swap:wght@100..900);

  
body {
  margin: 0;
  background: #ffffff;
  font-family: 'Lexend Exa';
}

a {
  text-decoration: none;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #009d92;
  padding: 0px 12px;
}

.header_logo {
  font-family: Pacifico;
  font-weight: 500;
  font-size: 30pt;
  padding-left: 3%;
  padding-right: 0px;
}

.header_menu {
  font-family: Lexend Exa;
  font-weight: 400;
  display: flex;
  list-style: none;
  padding-left: 0;
  padding-right: 50px;  
}

.header_menu li a {
    padding: 8px 30px;
}
.header_menu li a:hover {
    color: #f5d082;
}


.section {
  color: #000000;
  text-align: center;
  margin-top: 200px;
  margin-bottom: 200px;
}

.section temp_title {
  position: absolute;
  width: 100%;
  height: 500px;
}


.section h1 {
  color: #009d92;
  font-family: Pacifico;
  font-weight: 500;
  font-size: 60pt;
}

.section h2 {
  font-weight: 900;
  font-size: 40pt;
}

.section h3 {
  font-weight: 300;
  font-size: 20pt;
}

.btn {display: inline-block;
      font-family: 'Lexend Exa';
      font-weight: 500;
      background-color: #009d92;
      color: white;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      margin-right: 10px;
      margin-bottom: 10px;
      cursor: pointer;
        }
.btn:hover {
  background-color: #addedb;
        }


.footer {
  display: flex;
  justify-content: space-between;
  background-color: #addedb;
  padding: 12px 12px;
}

.footer p{
  color: #000000;
  font-family: Noto Sans KR;
  font-weight: 200;
  font-size: 10pt;
}


/* Mobile */

@media screen and (max-width: 768px) {
   .header {
     width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .header_menu {
        align-items: center;
        display: none;
    }
  .header_logo {
    margin-left: 0;
  }
   .header_menu li {
        width: 100%;
    }
  
  .section {
    width: 100%;
  }
  .section h1 {
    font-size: 2em;
  }
  .section h2 {
    font-size: 2em;
  }
  .section h3 {
    font-size: 1em;
  }  
}


.footer p {
  font-size: 0.65em;
  
