/* *{
    outline: 1px solid red;
} */
#board{
    background: linear-gradient( #fff, rgb(83, 78, 78) );
    background-size: cover;
    position: relative;
    box-sizing: border-box;
    justify-content: center;
    display: flex;
    flex-direction: column;

}

.maintext{
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintext h1{
    text-align: center;
    font-family: "Lilita One", sans-serif;
    font-size: clamp(50px, 5vw ,100px);
    color: white;
    font-weight: 600;
    letter-spacing: 30px; 
}

#truste{
    background-color: rgba(2, 9, 85, 0.24);
    border-radius: 2px;
    color: #c3b498;
}

.boardText hr{
    background-color: rgba(2, 9, 85, 0.24);
    height: 3px;
    border: none;
    margin-top: 30px;
}


.boardText h2{
    text-align: center;
    font-family: "Lilita One", sans-serif;
    font-size: clamp(50px, 5vw ,100px);
    color: white;
    font-weight: 900;
    letter-spacing: 30px;  
    margin-bottom: 50px;
}

#board .logo img{
    height: 200px;
    width: 190px;
}

#board .logo{
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.obj{
    background: linear-gradient(to bottom , #24282e , #000000);
}

#board .maintext img{
    height: 690px;
    margin-left: 100px;
    border-left: 100px solid #000000a9;
    padding-left: 20px;
    border-radius: 15px;

}

.boardmembers{
    display: flex;
    /* align-items: center;
    justify-content: center; */
    margin-top: 100px;
    flex-direction: column;
    padding: 0px 100px;
}

.member{
    display: flex;
    margin-bottom: 100px;
}       

.text h1{
    font-size: clamp(30px, 4.5vw ,90px);
    font-weight: 900;
}

.text p{
    font-size: clamp(13px,1vw,20px);
    width: clamp(500px, 57vw ,1100px);
    color: #545454;
    font-weight: 700;
    line-height: clamp(30px,2.5vw,50px);
}

.text{
    display: flex;
    flex-direction: column;
}

.member img{
    margin-right: 50px;
    height: 100%;
}

/* .line{
    background-color: rgb(170, 170, 170);
    width: 10px;
    height: 100px;
    margin-right: 50px;
    border-radius: 20px;
    margin-top: 50px;
} */


#menu{
    display: none;
    position: absolute;
    top: 15px;
    left: 5px;
    font-size: 25px;
}
#plus{
        display: none;
}


@media screen and (max-width: 800px){ 
    #truste{
        width: 90vw;
        font-size: 40px;
        font-weight: 900;
    }

    .boardText h1{
        letter-spacing: 10px;
    }
    .boardmembers{
        align-items: center;
        justify-content: center;
        padding: 0px 10px;
    }
    h1{
        font-weight: 900;
    }
    #board .logo img{
        display: none;   
    }
    hr{
        width: 90%;
    }
    .boardText{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 15px;
    }
    .boardText hr{
        background-color: rgba(2, 9, 85, 0.24);
        height: 3px;
        border: none;
        margin-top: 20px;
    }
    
    #board .logo img{
        height: 137px;
        width: 128px;
    }

    h1{
        text-align: center;
    }

    #plus{
        display: flex;
    }

    #header h1 {
        display: none;
    }

    #header img {
        display: none;
    }


    .logo h1{
        font-size: clamp(14px,0.1vw,19px);
    }
    #menu{
        display: block;
    }

    header{
        display: none;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .logo img{
        width: 50px;
    }

    nav ul{
        flex-direction: column;
        justify-content: space-around;
        height: 40vh;
        text-align: center;
        margin-bottom: 40vh;
    }

    ul li a{
        font-size: 50px;
        text-align: center;
        padding: 10px;
        width: 60px;
    }

    nav ul li a{
        font-size: 20px;
    }

    .member{
        flex-direction: column;
        justify-content: center;
        
    }

    .text{
        display: flex;
        align-items: center;
    }
    .member img{
        margin-left: 40px;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 2px black;
    }

    .boardmembers{
        align-items: center;
        justify-content: center;
    }

    .member p{
        width: 95%;
        text-align: center;
    }

    .boardText h2{
        font-size: clamp(50px, 5vw ,100px);
    }
}