/*whom contains the other ones*/
.content{
    display: flex;
    width: 100%;
    
}
/*lil sidebar for navigation*/
.sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #C5C6CB;
    border: 5px solid black;
    border-top: 0px;
    color: black;
    height:100%;
    width: 10%;
    border-radius: 3%;
}
.sidebar img{
    width: 50px;
    height: 50px;
    border-radius: 3px;
    padding: 0vh 0vh 2vh 0vh;
    border: 3px solid transparent;

    margin: 3vh 0vh 0vh 0vh;
    text-align: center;
}


.sidebar p{
    margin: 0vh 0vh 2vh 0ch;
    text-align: center;
}


.menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 3px solid transparent;
    margin: 5px;
    width: 100%;
}
.menu-items:hover{
    border: 3px solid #1a1a81;
    cursor: pointer;
    background-color: #999999;
}

/*where the content will go*/
.canva {
    position: relative;
    display: block;
    width: 80%;
    padding: 0px 5% 5% 5%;
    
}
.canva h1 {
    font-size: 50px;
}
.canva h3 {
    color:aquamarine;
}
.canva img {
    width: 900px;
    height: 500px;
}
.canva p {
    font-size: 20px;
    font-weight: 400;
}
#language{
    width: 50px;
    height: 50px;
}


/*for that liliconin the link*/
.repo-link{
    display: flex;
    font-size: 20px;
    text-align: center;
    background-color: #C0C0C0;
    border: 4px solid black;
    border-top: 0px;
    border-left: 0px;
    border-radius: 10px;
    padding: 20px;
    width: 20%;
}
.canva button:hover{
    background-color: #999999;
    color: wheat;
}
.repo-link img {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}