:root {
    /* --bs-body-bg: #136d63; green */
    --bs-body-bg: #40538a;
}

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

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(
        to right,
        #336eb7 10%,
        #4a527b 80%
    );
    font-family: "Noto Sans KR", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans KR", sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid black;
    text-align: center;
    line-height: 16px;
    margin: 3px;
    font-size: 15px;
}

.rectangle {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 1px solid black;
    text-align: center;
    line-height: 20px;
    margin: 3px;
    font-size: 13px;
}