*{ 
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
html, body{
    height: 100%;
}
body{
    background-image: url(/image/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
header{ 
    min-height: 80px;
    width: 100vw;
}
.navbar {
    position: absolute;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background-color: hsla(0, 0%, 50%, 0.50);
    box-shadow:inset 0 -1px 0 #C5C5C6;
}
.navbar a{
    color: white;
}
.navbar .logo{
    font-size: 2em;
    font-weight: bold;
}
.navbar .nav-links ul {
    display: flex;
}
.navbar .nav-links ul li{
    margin: 0 40px;
}
.navbar .nav-links ul li a{
    padding: 5px 10px;
    border-radius: 4px;
    background-color: transparent;
}
.navbar .nav-links ul li a:hover{
    background-color: #ffffff63;
}
.navbar .menu-hamb {
    display: none;
    position: absolute;
    right: 25px;
}
@media screen and (max-width: 860px) {
    .navbar{
        padding: 0;
    }
    .navbar .logo{
    position: absolute;
    top: 50px;
    left: 50px;
}
    .navbar .menu-hamb{
        display: block;
        top: 45px;
        right: 50px;
    }
    .nav-links{
        top: 0;
        left: 0;
        position: absolute;
        background-color: #dd2a2a28;
        backdrop-filter: blur(7px);
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
    }
    .nav-links.mobile-menu{
    margin-left: 0;
}
    .nav-links ul{
        display: flex;
        flex-direction: column; 
        align-items: center;
    }
    .navbar .nav-links ul li{
    margin: 25px 0px;
    font-size: 1.5em;
}
}