body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}
nav {
    display: flex;
    align-items: center;
    position: fixed;
    background-color: black;
    justify-content: space-evenly;
    width: 100%;
    height: 10%;
}

#logo{
    cursor: pointer;
    height: 60%;
    padding: 0%;
    background-color: transparent;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#logo :hover{
    background-color: white;
    border-radius: 10%;
}

#logo img{
    height: 100%;
    width: 100%;
    border-radius: 10%;
    padding-left: 10%;
}

#about{
    margin-top: 5%;
}


nav a{
    text-decoration: none;
    font-size: clamp(0.5vw,110%,5vw);
    color: white;
    padding: 1%;
    border-radius: 10%;

}

nav a:hover{
    color: black;
    background-color: white;
}

.content-left{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.content-left h2{
    font-size: clamp(1vw,2.5vw,10vw);
    width: 30%;
    margin: 5%;
    color: red;
    text-align: center;
}

.content-left p{
    text-align: justify;
    font-size: clamp(1vw,1.25vw,10vw);
    border : none;
    margin: 5% 5%;
    border-right : 0.5vw solid white;
    padding-right: 10%;
}
.content-left img{
    width: 50%;
    height: 50%;
}
.content-right img{
    width: 50%;
    height: 50%;
}
.content-right-inline {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    border:none ;
    border-left: 0.5vw solid white;
    width: 50%;
}

.content-right-inline h2{
    text-align: left;
    width: 100%;
}
.content-right-inline p{
    border-right: none;
    width: 90%;
}

.content-right{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.content-right h2{
    font-size: clamp(1vw,2.5vw,10vw);
    width: 30%;
    margin: 5%;
    color: red;
    text-align: center;
}

.content-left ul{
    text-align: justify;
    font-size: clamp(1vw,1.25vw,10vw);
    border : none;
    margin: 5% 5%;
    border-right: 0.5vw solid white;
    padding-right: 10%;
    width: 37.5%;
}

.content-right ul{
    text-align: justify;
    font-size: clamp(1vw,1.25vw,10vw);
    border : none;
    margin: 5% 5%;
    border-left: 0.5vw solid white;
    padding-left: 10%;
}

.content-right p{
    text-align: justify;
    font-size: clamp(1vw,1.25vw,10vw);
    border : none;
    margin: 5% 5%;
    border-left: 0.5vw solid white;
    padding-left: 10%;
}

.team{
    display: flex;
    justify-content: space-evenly;
    font-size: clamp(1vw,2.5vw,10vw);
    color: red;
    text-align: center;
    background-color: black;
}
.team card{
    margin: 1%;
    width: 100%;
    padding: 1%;
    border-radius: 1vw;
    color: white;
}

.team card:hover{
    transform: scale(1.15);
}

.team card img{
    border-radius: 1vw;
    height: 50%;
    width: 75%;
}

.team h2{
    font-size: clamp(1vw,1.5vw,10vw);
    color: white;
}


.team h3{
    font-size: clamp(1vw,1.25vw,10vw);
}