#site-logo {
    float: left;
    width: 100px;
}

#site-title {
    float: left;
    margin-top: 30px;
    font-size: 15px;
    color: white;
}

#trademark {
    padding-left: 10%;
}

.header {
    overflow: hidden;
    background-color: black;
}

.menuitem {
    display: none;
    color: white;
    padding: 10px;
    padding: 10px 20px 10px 20px;
}

.menuitem:hover,
#download-button:hover {
    text-decoration: none;
    background-color: #171717;
    color: white;
}

.header #active {
    background-color: dodgerblue;
    border-radius: 5px;
}

#download-button {
    background-color: black;
    border: none;
}

.download-item {
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
}

.download-item:hover {
    color: black;
    background-color: #ddd;
    text-decoration: none;
}

.download-div:hover #download-links {
    display: block;
}

#download-links {
    display: none;
    width: 160px;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#menu-button {
    display: block;
    cursor: pointer;
    float: right;
    z-index: 99;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: white;
    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);
}

.overlay {
    overflow-y: auto;
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 16;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    transition: 0.5s;


}

.overlay a {
    font-size: 20px;
    display: block;
    padding: 8px;
    text-decoration: none;
}

.overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
    text-decoration: none;
}


@media only screen and (min-width: 1024px) {
    .menuitem {
        float: left;
        display: block;
    }

    #main-menu {
        margin-top: 30px;
    }


    #menu-button {
        display: none;
    }
}

@media only screen and (min-width: 440px) {
    #site-title {
        margin-top: 35px;
        font-size: 30px;
    }

    #site-logo {
        width: 150px;
    }


    .overlay {
        overflow-y: hidden;
    }

    .overlay .closebtn {
        position: absolute;
        top: 20px;
        right: 45px;
        font-size: 60px;
    }

    .overlay a {
        font-size: 36px;
        color: #818181;
        transition: 0.3s;
    }
}
