* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Gravitas+One&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

body {
    background-color: rgba(10, 10, 10, 0.984);
    color: white;
    font-family: Roboto, sans-serif;

}

.container {
    position: relative;
}

.color-one {
    position: fixed;
    top: 123px;
    left: 123px;
    opacity: 0.2;
    z-index: 0;
    height: 1px;
    box-shadow: 180px 180px 180px 180px #d2d2d2;
}

.color-two {
    position: fixed;
    top: 423px;
    right: 523px;
    opacity: 0.1;
    z-index: 0;
    height: 1px;
    box-shadow: 180px 180px 180px 180px #acacac;
}

/* nav part */

.container nav {
    margin-top: 23px;
    width: 99vw;
    position: fixed;
    z-index: 100;
}

nav .nav {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    height: 100px;
    width: 100%;
    max-width: 999px;
    border: 1px solid rgb(128, 128, 128);
    background-color: rgba(10, 10, 10, 0.575);
    border-radius: 123px;
    margin: auto;
    position: relative;
    z-index: 100;

}


.nav .nav-left {
    position: relative;
    width: 40%;
    display: flex;
    align-items: center;
    z-index: 100;
}

.nav-logo img {
    height: 50px;
    border-radius: 8px;
}


.nav-name {
    font-size: 2rem;
    padding-left: 12px;
    background-image: linear-gradient(135deg, #ffffff 0%, #78d4ff 50%, #ffffff 100%);
    background-clip: text;
    color: transparent;
}

.nav-right li a img {
    filter: invert();
}

.manu {
    position: absolute;
    top: 29px;
    right: 23px;
}

.manu .cross-svg {
    cursor: pointer;
    display: none;
    z-index: 100;
    filter: invert();
    position: absolute;
}

.manu .hamburger-svg {
    cursor: pointer;
    display: none;
    z-index: 100;
    filter: invert();
    position: absolute;
}

.cross-svg img {
    height: 32px;
}

.hamburger-svg img {
    height: 32px;
}

.nav .nav-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-right ul {
    z-index: 0;
    list-style: none;
    font-size: 1.1rem;
}

.nav-right ul li a {
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
}

.nav-right ul li a:hover {
    background-color: #44444451;
}

.nav-right ul a {
    text-decoration: none;
}

.contact-btn {
    width: 140px;
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 18px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all .2s ease-in;
}

.contact-btn:hover {
    box-shadow: 0px 0px 20px 3px #444444;
}
