* {
    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;
}

#bannerimg {
    width: 35%;
    height: 70%;
    border-radius: 10px;
}

.text1 {
    color: white;
    background-color: #ffffff11;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    width: 85%;
    margin-top: 20px;
    font-weight: none;
    font-size: 16px
}
.center-div {
    display: flex;
    justify-content: center;
}

.about-me-text {
    width: 85%;
    color: white;
}

.about-me-text h3 {
    font-weight: bold;
    margin-bottom: 10px;
    max-width: fit-content;
}

.about-me-text h3 {
    border-bottom: 5px solid rgba(84, 84, 84, 0.8);
}
.about-me-text p {
    font-weight: lighter;
}

.about-me-text span {
    padding-right: 10px;
    font-weight: bolder;
    color: #ff63c3;
}

.about-me-text a{
    text-decoration: none;
    color: #ff63c3;
}

.about-me-text, h1, h3{
    padding: 25px 0 0;
}

.project-img {
    display: block;
    justify-content: center;
    width: 80%;
}
.project-img img {
    margin-top: 40px;
    border-radius: 10px;
    width: 100%;
    height: auto;
}
img {
    width: 85vw;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
}
.project-img img:hover {
    -webkit-transform: scale(.4) rotate(0.01deg);
    transform: scale(1.2) rotate(0.01deg);
}

main{
    margin-top: 60px;

}

.footer {
    text-align: center;
    margin: 50px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.343);
}
@media (max-width: 769px) {
    .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: 5px;
        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: 770px) {
    .workcontainer {grid-template-columns: repeat(2, 1fr); }

    .content-skills {
        display: flex;
        justify-content: center;
    }

    .navbar {
        width: 800px;
    }
    main {
        width: 800px;
    }

    button {
        display: none;
    }
    .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;
    }
}
