*{
    margin:0;
    padding:0;
}

.title-card{
    text-align: center;
    background-color: darkkhaki;
}

body{
    background-color: darkkhaki;
}
/* nav{
    background-color: black;
    display: flex;
    color:grey;
    justify-content: space-between;
    padding:20px;
    height:40px;
    align-items: center;
}

.left-menu, .right-menu-list{
    display: inline;
}

.right-menu-list{
    display: inline;
    padding:10px;
}

.left-menu, .right-menu-list{
    cursor: pointer;
}

.left-menu:hover, .right-menu-list:hover{
    color:white;
} */

.crew{
    display: flex;
    align-items: flex-start; /* Align items at the start */
    padding-top: 20px;
    background-color: darkkhaki;
}

.crew-image{
    /* float: left; */
    margin: 10px;
    border-color: orange;
    border-width: 2px;
    border-style: solid;
}

.crew-about{
    text-align: justify;
    margin-right: 20px;
    background-color: orange;
    color: white;
    /* height:500px; */
    padding: 10px;
}

.crew-members{
    display: flex;
    background-color: darkkhaki;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.crew-members-about{
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    width:30%;
    flex-basis:30%;
    border-color: orange;
    border-width: 2px;
    border-style: solid;
    margin-right: 20px;
    margin-top: 20px;
}

.crew-members-about img{
    text-align: center;
}

.member-about{
    padding: 5px;
    text-align:start;
    background-color: orange;
    color: white;
    height:50%;
}

.crew-header{
    margin: 15px;
    display: flex;
    justify-content: center;
    height:50px;
    background-color: orange;
    color:white;
    padding:15px;

}

/* .clearfix::after {
    content: "";
    clear: both;
    display: table;
} */