/* 네비게이션 바 스타일 */
.navbar {
    display: flex;
    align-items: center;
    background-color: #0f1419;
    padding: 10px;
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 9999;
}

.logo {
    width: auto;
    height: 60px;
    margin-left: 10%;
}

.navbar .menu {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: 10%;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: clamp(0.8rem, 2vw, 1.5rem);
    margin-left: 30px;
    font-weight: bold;
}
