* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container {
    height: 600px;
    width: 100%;
}

.logo-navbar {
    width: 100%;
    background-color: #2f1654;
    height: 50px;
    
}


    

/* roles */

.roles {
    display: flex;
    flex-direction: column;
    height: 300px;
    margin-top: 2%;
    text-align: center;
}

.roles-info {
    display: flex;
    margin-top: 3%;
    justify-content: space-evenly;
    /* margin-left: 20%; */
}
.roles button{
    width: 80%;
}

.founder-role,
.team-leader-role,
.employee-role {
    border: 1px solid white;
    box-shadow: 1.5px 0.1px 20px rgb(117, 117, 117);
    width: 260px;
    height: 240px;
}
.founder-img,
.team-lead-img,
.employee-img{
    border-bottom: 1px solid rgb(0, 0, 0);
}
.info-form{
    margin-top: 5%;
    width: 600px;
    margin-left: 25%;
}
.info-form input{
    width: 80%;
    /* height: 30px; */
    margin-left: 10%;
} 
.info-form button{
    width: 80%;
    margin-left: 10%;
    background-color: rgb(57, 131, 57);
    border: 2px solid green;
    border-radius: 8px;
    color: white;
    height: 40px;
} 