@charset "utf-8";
@import "font.css";
/* reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: #292929;
}
:root{
    --engFont:'SmalltalkSansBold';
    --korFont:'DungGeunMo';
    --engDescFont:'Montserrat';
    --korDescFont:'Pretendard';
    --backgroundColor: linear-gradient(to bottom, #C2E8FB, #fff);
    --titleColor: #F3DCEB;
    --textColor: #292929;
}

#wrap {}
header {}
header .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .home-coding {}
header .home-coding a {}
header .home-coding a img {}
header .index {}
header .index ul {
    display: flex;
    gap: 70px;
}
header .index ul li {}
header .index ul li.on::after {
    content: "";
    display: block;
    border-bottom: 4px solid #C2E8FB;
}
header .index ul li a {
    display: block;
    line-height: 90px;
    font-family: var(--korFont);
    font-size: 1.25em;
}