* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #f5f5f7;
}

.navbar {
    display: inline-flex;
    align-items: center;
    Justify-content: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background-color: navy;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.navbar-logo {
    float: left;
    font-size: 2rem;
    font-weight: 600;
    padding: 0 0 0 0;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.navbar-container {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-container .navbar-menu {
    display: inline-flex;
    float: right;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    padding: 3px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover {
    color: #000;
    background: rgba(245, 245, 247, 0.9);
    border: 2px solid #000;
}

.navbar-toggle {
    display: none;
    background: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.base-container {
    display: grid;
    align-items: center;
    Justify-content: center;
    padding: 2rem;
}

.alert-container {
    display: grid;
    align-items: center;
    Justify-content: center;
    padding: 2rem;
}

.alert-container.active {
    display: none;
}

.base-container h1 {
    padding: 0.5rem 0
}

.login-input {
    padding: 0.5rem
}

.notes {
    background-color: white;
    font-size: 1.0rem;
    width: 80vw;
    word-wrap: break-word;
    white-space: pre-line;
    padding: 0px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px #999;
}
.notes-header
{
    font-size: 1.2rem;
    font-weight: bold;
    height: 2.4rem;
}

.base-container .currency_container{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    margin: 0 1rem 1rem 0;
}

.base-container .weather_container{
    display:grid;
    grid-template-columns: 2fr 1.5fr 0.5fr 0.75fr;
    text-align: left;
    margin: 0 1rem 1rem 0;
}

.base-container .weather_container #weather_city_name, #weather_temperature{
    font-weight: bold;
}

.base-container .weather_container #weather_humidity, .degree{
    font-size: 0.8rem;
    color: #707b7c;
}
.base-container .weather_container #weather_humidity_em{
    font-size: 0.4rem;
    opacity:0.8;
    vertical-align: top;
}

.base-container .weather_container #weather_date{
    font-size: 0.8rem;
    color: #707b7c;
    vertical-align: top;
}

.programmer{
    display: block;
    width: 90px;
    height: 90px;
    max-width: 20%;
    max-height: auto;
    margin-left: auto;
    margin-right: auto;
}
@keyframes constructionTransparent{
    0% {opacity:1;}
    10% {opacity:0.9;}
    20% {opacity:0.8;}
    30% {opacity:0.7;}
    40% {opacity:0.6;}
    50% {opacity:0.5;}
    60% {opacity:0.4;}
    70% {opacity:0.3;}
    80% {opacity:0.2;}
    90% {opacity:0.1;}
    100% {opacity:0.05;}
}
.construction {
    display:  block;
    width: 20%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    animation-name:constructionTransparent;
    animation-duration:2000ms;
    animation-iteration-count: infinite;
  }

#login-submit {
    background-color: navy;
    color: #fff;
    font-size: 1.3rem;
    border: none;
}

#login-submit:hover {
    opacity: 0.7;
    font-weight: 900;
}

#note-deleting{
 display: flex;
 justify-content:space-between;
 align-items: center;
}

#deleting-button{
    background-color: red;
    width: 5vw;
    height: 5vw;
}

#vdate{
   font-size: 0.8rem;
   color: #707b7c;
}

#vchcode{
    font-weight: bold;
}

#vcurs{
    font-weight: bold;
}

@media (max-width: 880px) {
    .navbar {
        backdrop-filter: none;
    }

    .navbar-container .navbar-menu {
        display: none;
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        float: right;
        z-index: 999;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .navbar-container .navbar-menu {
        flex-direction: column;
        align-items: flex-start;
        background-color: navy;
        gap: 1.7rem !important;
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 80px;
        right: 0;
        padding: 5rem 1.5rem;
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px)
    }


}
