* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
body {
    font-family: Arial;
}
header {
    height: 100vh;
    width: 100%;
    background-image: url("cover.jpg");
    background-size: cover;
    color: white;

}
footer {
    background-color: white;
    text-align: center;

}

.navbar {
    position: absolute;
    padding: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.navbar a {
    color: white;
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
}

.navbar .nav-links ul {
    display: flex;

}
.navbar .nav-links ul li {
    margin: 0 8px;
}

.navbar .nav-links ul li.active * {
    color: red;
    font-weight: 100;
}
.menu {
    display: none;
    position: absolute;
    width: 30px;
    top: 38px;
    right: 40px;  
}

@media screen and (max-width:900px) {
    .navbar {
        padding-left: 0;

    }
    .navbar .logo {
        position: absolute;
        top: 50px;
        left: 50px;
        
    }
    
    .navbar .menu {
        display: block;
    }
    
    .nav-links {
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.10);
        backdrop: filter 7px;
        width: 100%;
        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;

    }
    .navbar .nav-links ul li {
        margin: 25px 0;
        font-size: 1.2cm;
    }
    
}