
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}

body{
    /* font-family: 'Rajdhani', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* #5b78c7 
rgb(240, 81, 81)*/

nav
{
    font-family: 'Rajdhani', sans-serif;
    height: 8vh;
    background: #23272A;
    /* background: #1D1D1D; */
    display: flex;
    overflow-x: hidden;
}

.nav-links
{
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    list-style: none;
    width: 50%;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
}

.nav-links li a
{
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.nav-links li a:hover
{
    width: 100%
}

.nav-links li a:after{
    content: "";
    position: absolute;
    background-color: mediumspringgreen;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links li a:hover:after{
    width: 100%;
}

.landing{
    font-family: 'Montserrat', sans-serif;
    background-color: #1f2029;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
    background-size: 4%;
    height: 92vh;
    width: 100%;
 }

 .logo{
     /* background-color: red; */
     display: flex;
     align-items: center;
     height: 100%;  
     width: fit-content;
     cursor: pointer;
 }

 .icon{
     text-decoration: none;
     color: white;
     font-size: large;
     font-weight: bold;
     margin-left: 50px;
 }



 @media screen and (max-width: 1000px) {
    
    /* body{
        overflow-x: hidden;
    } */
    .icon{
        margin-left: 25px;
    }
    .line
    {
        width: 30px;
        height: 3px;
        background: mediumspringgreen;
        margin: 5px;
        border-radius: 10px;
        transition: 0.5s ease-in-out;
    }

    .line1.opened1{
        background: red;
        transform: rotate(-45deg) translateY(6px) translateX(-5px);
    }

    .line2.opened2{
      transform: rotateX(50px);
      transform: rotateX(-50px);
       opacity: 0;
    }

    .line3.opened3{
        background: red;
        transform: rotate(45deg) translateY(-6px) translateX(-5px);
    }

    nav{
        position: relative;
    }

    .hamburger{
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
    }
    .nav-links 
     {
         position: fixed;
         background: #23272A;
         /* background: #1D1D1D; */
         height: 100vh;
         width: 100%;
         flex-direction: column;
         display: hidden;
        clip-path: circle(100px at 90% -20%);
        -webkit-clip-path: circle(100px at 90% -20%);
        transition: all 1s ease-out;
        pointer-events: none;
        overflow-x: hidden;
     }

     .nav-links.open
     {
         display: visible;
        clip-path: circle(1000px at 90% -20%);
        -webkit-clip-path: circle(1000px at 90% -20%);
        pointer-events: all;
     }

     .landing
     {
         display: flex;
         flex-direction: column;
     }

     .nav-links li
     {
         opacity: 0;
     }

     .nav-links li a {
         font-size: 25px;

     }
     .nav-links li:nth-child(1)
     {
         transition: all 0.5s ease 0.2s;
     }
     .nav-links li:nth-child(2)
     {
        transition: all 0.5s ease 0.4s;
     }
     .nav-links li:nth-child(3)
     {
        transition: all 0.5s ease 0.5s;
     }

     li.fade 
     {
        opacity: 1;
     }
}


/* .button.outline-button {
    display: block;
    margin-top: 0px 0px;
    margin-left: 20px;
    padding-top: 13px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    border-color: #d0ff00;
    background-color: transparent;
    -webkit-transition: background-color 200ms ease;
    transition: background-color 200ms ease;
    font-family: Spacegrotesk, sans-serif;
}

.button {
    font-family: 'Rajdhani', sans-serif;
    display: none;
    padding: 12px 30px;
    border-style: solid;
    border-width: 2px;
    border-color: #d0ff00;
    border-radius: 50px;
    background-color: transparent;
    transition: background-color 200ms ease;
    font-family: Spacegrotesk, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.button:hover
{
    background-color: #d0ff00;
    color: black;
} */