/* 보라색 바 */
.navbar {
    background-color: #6358DC;
    height: 3.5rem;
}

/* 로고 사이즈 조정 */
.logo {
    width: 100%;
    height: 100%;
}

/* 사이트 이름 그라데이션 */
.text-gradient {
    background: -o-linear-gradient(40deg, #fb3c00, #ffb800);
    background: linear-gradient(50deg, #fb3c00, #ffb800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-home-link {
    text-decoration-line: none;
    height: 3rem;
    display: flex;
    align-items: center;
}

/* 사이트 이름 커스텀 */
.nav-home-link .navbar-brand {
    font-size: 1.5rem;
    max-width: 15rem;
    white-space: nowrap;
    height: 100%;
}

/* 내비바 버튼 색상 */
.text-warning {
    color: #FF9700 !important;
    font-weight: bold;
    font-size: 1rem;
    width: 7.5rem;
    padding-bottom: 0.5rem;
}

/* 내비바 버튼 그림자 효과 */
.shadow-warning {
    -webkit-box-shadow: 0 0 3rem 0 rgba(255, 179, 14, 0.3) !important;
    box-shadow: 0 0 3rem 0 rgba(255, 179, 14, 0.3) !important;
}

/* 내비바 아이콘 크기 */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48
}

/* 햄버거메뉴 오른쪽으로 */
.navbar-toggler-container {
    margin-left: auto;
    display: flex;
}

.nav-item {
    margin-top: 0.7vmin;
}

#weather-info {
    color: white;
}

#weather-icon {
    max-width: 50px;
    display: block;
    margin: 10px auto;
}