@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

:root {
    --primary-color: #1f6be9;
    --secondary-color: #0e316b;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: #444;
}

nav {
    background-color: #ececec;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.39);
    z-index: 1;
}
nav .icn_user_nav {
    font-size: 23px;
    color: var(--secondary-color);
    line-height: 30px;
    margin-left: 5px;
} 
nav .member-status {
    color: #424242;
    line-height: 32px;
    font-size: 16px;
}

.login-container {
    position: absolute;
    z-index: 1;
    background-color: rgba(255,255,255,0.2);
    top: 50%;
    left: 50%;
    margin-top: 0px;
    transform: translateY(-50%) translateX(-50%);
    backdrop-filter: blur(5px);
}

.member-status:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,0.1);
}

.btn {
    border-radius: 0px;
}

.btn-like {
    cursor: pointer;
    font-size: 18px;
}
.btn-like:hover {
    color: #f00;
}
.liked {
    color: #f00;
}

.preview-proj {
    width: 100%;
    height: 225px;
    background-color: #444444;
}

.ship-address {
    color: #444444;
    font-size: 11px;
}

.dropdown-menu.show {
    animation: 0.255s fadein ease;
}