body{
    margin:0;
    padding:0;
    background-color: #dad9d9ea;
    font-family:'Poppins', sans-serif;
}
.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(72,25,88,1) 0%, rgba(39,30,43,1) 100%); 
    color: white;
    
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.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;
}
.team-container
{
    width:100%;
    height: auto;
 
}
:root{
    --prim:#481958;
    --sec:--#e69cff;
}
h1,h2,h3{
    font-family: 'norwester';
  }
.text
{
    color:var(--prim);
    font-size: 25px;
    margin-top: 40px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
 
}
.row
{
    width: 60%;
    margin:auto;
    margin-bottom: 40px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
}
@media(max-width: 768px)
{
    .row{
        width: 100%;
    }
}
.profile-card
{
    background-color: #ffffff;
    width: 400px;
    
    margin: 20px 10px 10px 10px;
}
@media(max-width: 468px)
{
    
}
.profile-content
{
    padding:15px;
}
img:not(.navbar img)  {
    width: 300px;
    height: 100%;
    border-radius: 3px;
}
.profile-image
{
    text-align: center;
}
.desc
{
    text-align: center;
}
.desc h2
{
    color: var(--prim);
    font-size: 20px;
}
.desc p{
    font-size: 13px;
    line-height: 1.3em;
    margin-top: -10px;
    color: #898989;
     
}
@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar{
      width: 100%;
    }
    
    .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 #6b6666;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }}
    @media (max-width:350px) {
       .profile-image img{
        width: 100px;
        
       } 
    }