@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
 
body{
    padding: 0%;
    margin: 0%;
    font-family: 'poppins', sans-serif;
    overflow-x: scroll;
    background-color: #111111;
    color: white;
    scroll-behavior: smooth;
    animation: myAnim 1s ease 0s 1 normal forwards;
}
@keyframes myAnim {
	0% {
		transform: scale(2);
	}

	100% {
		transform: scale(1);
	}
}
/*scroll bar*/
::-webkit-scrollbar{
    width: 0px;
}

/*about us navigation logo*/
.about-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0%;
    margin: 0%;
}
.about-nav-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    margin: 0%;
    color: white;
    width: 100%;

}

.about-nav-content li{
    list-style-type: none;
}
.about-nav-content  a{
    float: left;
    display: block;
    position: absolute;
    left: .5rem;
    margin: 0px;
    background-color: #3ab795;
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 5px 10px;  
    border-radius: 10px;
}
.about-nav-content h5{
    display: block;
    width: 200px;
    padding: 5px;
    margin: 0%;
}

/*who are we*/
.info{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    padding: 2rem;
   
}
.infos{
    display: block;
    width: 600px;
    text-align: center;
    border: 1px solid #555;
    padding: 1rem;
}

#f-us{
    text-align: center;
    padding: 1rem;
}
.GET-ALGO{
    padding: 1rem;
}
.follow{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;    
}
.follow img{
    height: 40px;
    padding: 10px;

}
.info-img{
    animation: planet 1s ease 0s 1 normal forwards;
}
@keyframes planet {
	0% {
		transform: rotate(0);
		transform-origin: bottom;
	}

	100% {
		transform: rotate(360deg);
		transform-origin: bottom;
	}
}

.follow img:hover{
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
}

/*Teams*/
.team{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
    color: #171717;
}
.team-content-start{
    display: block;
    width: 500px;
    text-align: center;
    border: 1px solid #555;
    padding: 1rem;
}

/*team-link-members*/
.team-link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:3rem ;
}
.team-link h2{
    text-align: center;
}
.team-link-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
.t1{
    display: inline-block;
    border: 3px solid #555;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    padding: .5rem;
    
}
.t1:hover{
    transform: scale(1.1);
    transition: 0.4s;
}
.team-link img{
    height: 150px;
    width: 150px;
}

.t1 a img{
    height: 30px;
    width: 30px;
}
/*feature*/
.feature{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    color: #171717;
}
.feature h2{
    display: block;
    text-align: center;

}
.feature-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.f1{
    padding: 1rem;
    border: 1px solid #555;
    margin: 15px;
    text-align: center;
    color: #171717;
}
.f1:hover{
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
}