/* CSS */

html{
    background-color: black;
    font-family: 'Roboto', sans-serif;
}
.navbar{
    background-color: black;
    opacity: 0.8;
    height: 100px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

#logo{
    width: 20%;
    height: 100%;
    justify-content: center;
}

#logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#index {
    width: 80%;
}
#index ul{
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 15pt;
}

#index a{
    color: white;
    font-weight: bold;
    text-decoration: none;
}

#index li :hover{
    border-bottom-width: 3px;
    padding-bottom: 3px;
    border-color: #FF6D0A;
    border-bottom-style: solid;
    font-size: 16pt;
}

#ImgAndAbout{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px;
    margin-top: 30px;
}

#About{
    width: 60%;
}

#Image{
    width: 40;
    display: flex;
    justify-content: center;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

#videoandheading{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    margin: 30px;
    margin-top: 5%;
}

#video{
    width: 50%;
    display: flex;
    justify-content: center;
}
#myvideo{
    width: 80%;
    border-radius: 2%;
}
#videoheading{
    width: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
}

#contacts{
    margin: 30px;
    margin-top: 1%;
}

#contactmeheading{
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
}

#contact-me{
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content:center;
}
#contact-me a{
    width: 5%;
    margin-left: 2%;
    margin-right: 2%;
}
#contact-me img{
    width: 100%;
}

#myprojectsheading{
    color: white;
}

.projectdiv{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px;
    margin-top: 30px;
    margin: 3%;
}
.projectinfodiv{
    width: 60%;
}

.projectimagediv{
    width: 40%;
    display: flex;
    justify-content: center;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    border-radius: 10px;
    margin:2%;
}

.projectimage{
    width: 100%;
    border-radius: 10px;
}

li{
    color: white;
}