*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
::-webkit-scrollbar {
    width: 0.5vw;
}
::-webkit-scrollbar-track {
    width: 0.5vw;
    background-color: rgb(100, 100, 100);
  }
   
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(200, 200, 200); 
border-radius: 10px;
}

nav.header-parent{
    height: 10%;
    width: 94%;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    z-index: 100;
}
nav.header h1{
    font-family: "Nunito", sans-serif;
}
div.header{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: visible;
}
div#headerLogo{
    cursor: pointer;
}
img.header_logo{
    line-height: 1;
    display: flex;
    align-items: center;
    max-height: 4vh;
    overflow: hidden;
}
img#header_logo{
    margin-right: 2vw;
}
h1.header_text{
    font-size: 2em;
    color: rgb(200, 200, 200);
}
#engineeringsSpan{
    font-size: 2em;
    margin-right: 2vw;
    margin-left: 2vw;
    margin-top: 0.2vh;
    margin-bottom: 0.2vh;
    color: gray;
    cursor: pointer;
    height: 6vh;
    width: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: rgb(50, 50, 50);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    overflow: visible;
    border-radius: 50%;
}
#gotohomebutton{
    position: absolute;
    right: 2vw;
}
span{
    overflow: hidden;
}
.NOSHOW{
    background: none;
    border: none;
}
.footer,
.footer2{
    position: absolute;
    height: 3vh;
    z-index: 100;
    width: 100%;
    background-color: black;
}
.footer{
    bottom: 0;
}
.footer2{
    height: 1vh;
    top: 0;
}
body{
    overflow: hidden;
}


/* self made bootstrap */

.col{
    width: 100% !important;
}

.d-flex{
    display: flex !important;
}

.flex-row{
    flex-direction: row !important;
}

.flex-column{
    flex-direction: column !important;
}

.col-6{
    width: 50% !important;
}

.align-items-center{
    align-items: center !important;
}

.justify-content-between{
    justify-content: space-between !important;
}

.justify-content-around{
    justify-content: space-around !important;
}