
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #202023;
}
.navbar {
    display: flex;
    color: white;
    background-color: #20202397;
    -webkit-backdrop-filter:saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(10px);
    height: 56px;
    overflow: hidden;
    position: fixed;
    top: 0px;
    width: 100%;
}
.name-title {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 18px;
    font-weight: bold;
}
.workcard {
    display: flex;
    flex-direction: column;
    width: 85%;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
}
.workcontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
}
.content-skills p {
    text-align: center;
    font-weight: lighter;
}
#title {
    color: white;
    padding:  15px 34px;
}

.workcontainer, p, h3 {
    color: white;
}
.center-div {
    display: flex;
    justify-content: center;
}
#bannerimg {
    width: 35%;
    height: 70%;
    border-radius: 10px;
}
img {
    width: 85vw;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
}
.workcard img:hover {
    -webkit-transform: scale(.4) rotate(0.01deg);
    transform: scale(1.05) rotate(0.01deg);
}
/* work pagina opmaak einde*/

main{
    margin-top: 60px;
}


.footer {
    text-align: center;
    margin: 50px 0;
    font-size: 14px;
}
.footer p {
    color: rgba(255, 255, 255, 0.343);
}


/* basis opmaak einde */

@media (max-width: 800px) {
    .navbutton {
        position: absolute;
        top: .5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        border: 1px solid white;
        background-color: #323235;
        color: white;
        font-size: 14px;
    }
    .nav-menu {
        width: 225px;
        background-color: #2D3748;
        position: fixed;
        border-radius: 5px;
        right: 15px;
        top: 56px;
        display: none;
        box-shadow: 1px 2px 20px #000000;
    }
    .nav-menu ul {
        padding: 5px;
    }
    .nav-menu ul li {
        padding: 5px;
        list-style: none;
        color: white; 
    }
    .nav-menu a {
        color: white;
        text-decoration: none;
    }
    .nav-menu.active {
        display: flex;
    }
}

@media (min-width: 800px) {
    .workcontainer {grid-template-columns: repeat(2, 1fr); }

    .content-skills {
        display: flex;
        justify-content: center;
    }

    .navbar {
        width: 800px;
    }
    main {
        width: 800px;
    }
    .nav-menu {
        display: none;
    }
    button {
        display: none;
    }
    img {
        width: 333px;
        height: 190px;
        border-radius: 10px;
    }
    .nav-menu {
        display: flex;
        position: fixed;
        top: 9px;
        display: flex;
        align-items: center;
    }
    .nav-menu ul{
        display: flex;
    }
    .nav-menu ul li {
        width: 70px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        padding: 0 30px;

    }
    .nav-menu ul li a {
        color: white;
        text-decoration: none;
        font-weight: lighter;
    }

    .nav-menu ul li:hover {
        background-color: #8FD3CF;
        transition: .3s;
        color: black;
    }
    .nav-menu ul li a:hover {
        color: rgb(3, 0, 22);
        transition: .2s;
    }
}


/* end media query tablet size */