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

.divbox{
  float: left;
  margin: 3% 6%;
  width: 150;
  height: 150;
  border-radius: 25px;
  border: 2px solid #73AD21;
  padding: 20px;
}

#join-btn {
  float: right;
  transform: translateX(-100px);
}

body {
  background-color: #121212;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

h1{
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;;
}

.clear{
  clear: both;
}

* {
    box-sizing: inherit;
    margin:auto;
    color: white;
    /* font-family: 'Noto Sans KR', sans-serif; */
}

p {
  font-family: 'Noto Sans KR', sans-serif;
  padding: 10px;
  font-weight: 300;
}

h3 {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
}

:root {
    --ease: all 0.8s ease 0s;
}

.title {
  font-size: 35px;
  font-family: 'Noto Sans KR', sans-serif;
}



.topnav {
  overflow: hidden;
  background-color: #121212;
}

.topnav a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  background: #121212;
  font-family: 'Noto Sans KR', sans-serif;
}

.topnav a:hover {
  background-color: #b2bac3;
  color: black;
  transition: var(--ease);
  filter: brightness(150%);
}

.topnav a.active {
  background-color:#121212;
  color: white;
}