@import url(/css/reset.css);
@import url(/css/variables.css);
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500&display=swap');


.navbarre{
    font-family: "DM Sans";
    color: var(--clr-white);
    width: 100%;
    background-color: var(--clr-darkblue);
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    
    
}

.navbarre__title{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01831rem;

}

.navbarre__text{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
    
}
.navbarre__right--btn{
    border-radius: 1rem;
    background-color: var(--clr-pink);
    padding: 0.5rem 1.25rem;
    line-height: 1.375rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--clr-white);

}

.navbarre__left{
    display: flex;
    gap: 4rem;
    padding-left: 8rem;
}
.navbarre__right{
    display: flex;
    gap: 4rem;
    padding-right: 8rem;
}
.navbarre__text:hover{
    text-decoration: underline solid var(--clr-white) 1px;
}
.navbarre__right--btn:hover{
    text-decoration: underline solid var(--clr-white) 1px;
    background-color: var(--clr-varpink);
}

.team{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "DM Sans";
    background-image: url(./assets/Background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--clr-black);
    height: 57rem;

}

.team__top{
text-align: center;
margin-top: 4rem;
}

.team__top--title{
color: var(--clr-white);
font-size: 2.625rem;
font-weight: 700;
line-height: 3.25rem; 
letter-spacing: -0.025rem;
}

.team__top--info{
color: var(--clr-white);
opacity: 0.5;
font-size: 1.375rem;
font-weight: 500;
line-height: 2rem;
width: 43rem;
margin-top: 1rem;
}

.team__card__container{
    display: flex;
    flex-direction: row;
    width: 73rem;
    height: 25rem;
    background-color: var(--clr-white);
    border-radius: 1rem;
    justify-content: space-evenly;
    gap: 2rem;
    margin-top: 6rem;

}
.team__card{
    padding-top: 4rem;
    text-align: center;
    justify-content: center;
    color: var(--clr-darkblue);
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 2rem;
}
.team__card-name{
    margin-top: 2rem;

}
.team__card-icons{
    margin-top: 2rem;

}
.team__card:nth-child(2){
    border-left: 0.125rem solid var(--clr-lightgrey);
    padding-left: 7rem;
    border-right: 0.125rem solid var(--clr-lightgrey);
    padding-right: 7rem;
}
.btn{
    color: var(--clr-white);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.625rem;
    text-align: center;
    border-radius: 6.25rem;
    border: 2px solid var(--clr-white,);
    padding: 0.75rem 2rem;
    margin-top: 1rem;
    text-decoration: none;

}
.btn:hover{
    text-decoration: underline;

}