/*배달의민족 주아*/
@font-face {
    font-family: 'BMJUA';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMJUA.woff')
    format('woff');
    font-weight: normal;
    font-style: normal;
}

/*페이북 끌꼴*/
@font-face {
    font-family: 'paybooc-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/*IBM Plex Sans Regular*/
@font-face {
    font-family: 'IBMPlexSansKR-Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/IBMPlexSansKR-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0px;
}

a {
    text-decoration: none;
    color: white;
}

.navbar {
    font-family: 'BMJUA';
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #263343;
    padding: 8px 12px;
}

.navbar__logo {
    font-size: 24px;
    color: white;
}

.navbar__logo i {
    color: #d49466
}

.navbar__menu {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.navbar__menu li {
    padding: 8px 12px;
}

.navbar__icons {
    list-style: none;
    color: white;
    display: flex;
    padding-left: 0;
}

.navbar__icons li {
    padding: 8px 12px;
}

.navbar__toogleBtn {
    display: none;
    position: absolute;
    right: 32px;
    font-size: 24px;
    color: #d49466;
}

.navbar__menu li:hover {
    background-color: #d49466;
    border-radius: 4px;;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 12px;
    }

    .navbar__menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar__menu li {
        width: 100%;
        text-align: center;
    }

    .navbar__icons {
        display: none;
        justify-content: center;
        width: 100%;
    }

    .navbar__toogleBtn {
        display: block;
    }

    .navbar__menu.active,
    .navbar__icons.active {
        display: flex;
    }
}

.main_text {
    font-family: 'IBMPlexSansKR-Regular';
    font-size: 30px;
    justify-content: center;
    text-align: center;
    margin-top: 440px;
    margin-bottom: 440px;
}

.subtext {
    font-family: 'IBMPlexSansKR-Regular';
    opacity: 0;
}

.subtext p {
    font-size: 20px;
}

.command {
    font-size: 20px;
}

.use {
    font-family: 'IBMPlexSansKR-Regular'
}

.use p {
    margin-left: 20px;
}

.use h4 {
    margin-left: 10px;
}

.use li {
    margin-left: 20px;
}

.sub {
    font-family: 'IBMPlexSansKR-Regular'
}

.sub a {
    color: #ff7979;
}

.sub a:hover {
    text-decoration: underline;
}

.s {
    background-color: #FF8000; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 10px;
}