@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    background: rgb(122,13,159);
background: linear-gradient(90deg, rgba(122,13,159,1) 0%, rgba(122,13,159,1) 18%, rgba(39,30,43,1) 100%);
    color: white;
    animation: nav-load 800ms ease-in-out;
    
}



.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}

.navbar-links li a:hover {
    
    color: #F7CB46;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}
.toggle-button .bari{
    height: 3px;
    width: 80%;
    background-color: white;
    border-radius: 10px; 
    align-items: flex-end;
}
@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar{
      width: 100%;
    }
    .abouttext{
        margin-top: 10px;
        width: 80%;
        color: #393535;
        font-size: 17px;
        padding: 1.5rem;
    }
    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
        
    }

    .navbar-links ul li {
        text-align: center;
        border-bottom:1px solid #ffffff;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
  }
  .reveal.activ{
    transform: translateY(0px);
    opacity: 1;
    transition: all 1s ease;
  }
  .desc p{
    margin: 0px;
}