body{
    background-color: "#c4c4c4";
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

.homeCon{
    width: 100%;
    height: 100%;
    position: relative;
}

.starHalf{
    position: absolute;
    top: 0;
    right:0;
    opacity: .2;
}

.startH2{
    position:absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    opacity: .2;
    z-index: -1;
}

.homeCon form{
    width: 100%;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    left:0;
    justify-content: center;
    align-items:center;
    display: flex;
    flex-direction: column;
}

.compLogo{
    width: 200px;
}
.compLogo img{
    width: 100%;
}

.viewNavElement1{
    background: #41295a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2F0743, #41295a);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2F0743, #41295a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 10px;
}

.viewNavElement2{
    background: #136a8a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #267871, #136a8a);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #267871, #136a8a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 10px;
}

.navElCon{
    justify-content: center; 
    align-items: center;
    display: flex;
}
.navElCon a{
    float: left;
}

.vNEImg{
    width: 50%;
    margin: 20px;
}
.nav_description{
    font-size: .8em;
    color: white;
}
.navSelFormContainer{
    width: 100%;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    left:0;
    justify-content: center;
    align-items:center;
    display: flex;
    flex-direction: column;
}

.topicElement{
    width: 100%;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    color: gray;
}
.topicElement a{
    z-index: 10;
}
.imageUploader{
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 1px;
    flex-direction: row;
}

.navUl{
    width: 60%;
    margin: 0 auto;
}
.navUl a li{
    width: 100%;
    text-decoration: none;
    background: #136a8a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #267871, #136a8a);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #267871, #136a8a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 10px;
    padding: 10px;
}
.navUl a li:hover{
    background: #0b4a61;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #19524d, #0d4458);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #267871, #136a8a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.navUl a{
    width: 100%;
    color: white;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 10px 0 10px 0;
}

.navUl a img{
    width: 30px;
    height: 30px;
}
.navUl input{
    border: 1px solid gray;
    outline: none;
    padding: 10px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .navUl{
        width: 100%;
        padding: 0 20px 0 20px;
    }
    .containerElement{
        width: 100%;
    }
    .imageUploader{
        flex-direction: column;
    }
}