* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  font-family: 'Noto Sans KR', sans-serif; 
  padding: 0;
}

/*index에서 사용됨*/
.left {
  height: 100%;
  width: 50%;
  position: fixed;
  background-color: #FFEB3B;
}

/*index에서 사용됨*/
.right {
  margin-left: 50%;
  height: 100%;
  width:50%;
  position: fixed;
  background-color: #EEEEEE;
}

/*index에서 사용됨*/
.divcenter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
