html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #107797;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0a1a6c;
}

body{
    background: #000000;
}

header{
    position: fixed;
    z-index: 1;
    width: 100%;
    background: black;
    margin: 0;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #3e3e3e;
    justify-content: center;
    flex-direction: column;
}

header a{
    text-decoration: none;
    font: bold 1em Arial, Sans-serif;
    display: none;
}

section{
    margin-top: 65px;
    display: block;
    padding-bottom: 30px;
}

footer{
    display: block;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #4b4a4a;
}

.footerDiv{
    padding-left: 10px;
    padding-right: 10px;
    width: 30%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.companyLogo{
    width: 100px;
}

#navButton{
    height: 40px;
    width: 40px;
    margin: 10px;
}

.aboutShort{
    display: block;
    color: #6a6868;
    cursor: default;
    font-family: "Roboto Light", monospace;
}

.rights{
    margin-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    color: #6a6868;
    font-family: "Roboto Light", monospace;
}

header img{
    height: 40px;
    width: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

#navView{
    display: block;
    width: 90%;
    height: 0;
    transition: height 0.5s;
    margin: auto;
    overflow: hidden;
}

#navView a{
    width: 100%;
    height: 35px;
    background: none;
    color: white;
    border-bottom: 1px solid grey;
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 35px;
}

#navView a:last-child{
    border: none;
}

.socialIcons {
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

.socialIcons img{
    width: 30px;
    transition: 0.3s;
}

.footerHead{
    display: block;
    text-decoration: underline;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: "Roboto Light", monospace;
    cursor: default;
}

.companySectionRedirect{
    display: block;
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.companyLastPart{
    cursor: default;
    font-family: "Roboto Light", monospace;
    color: white;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.email{
    color: white;
}

@media screen and (max-width: 679px){
    .footerDiv{
        width: 320px;
        margin: 20px;
    }
}

@media screen and (min-width: 1280px) and (min-height: 490px){

    .email:hover{
        color: #107797;
    }

    .socialIcons img:hover{
        transform: scale(1.1);
        animation: shake 0.6s;
        animation-iteration-count: infinite;
    }

    header br{
        width: 80%;
        margin: auto;
    }

    header{
        text-align: center;
        flex-direction: row;
    }

    header a{
        background: none;
        border: none;
        height: 100%;
        color: white;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 15px;
        margin-top: 70px;
        display: inline-block;
        transition: 0.3s;
    }

    header a:hover{
        transform: scale(1.1);
        color: #0a2774;
        border-bottom: 2px solid #0712db;
    }

    header img{
        height: 60px;
        width: 60px;
        padding: 0;
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -30px;
        cursor: pointer;
    }

    #navButton, #navView{
        display: none;
    }

    section{
        margin-top: 100px;
    }
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    14% { transform: rotate(2deg); }
    28% { transform: rotate(4deg); }
    42% { transform: rotate(2deg); }
    56% { transform: rotate(0deg); }
    70% { transform: rotate(-2deg); }
    80% { transform: rotate(-4deg); }
    100% { transform: rotate(-2deg); }
}
