@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-ExtraBold.ttf);
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf);
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-Italic.ttf);
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-Light.ttf);
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-LightItalic.ttf);
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url(../fonts/OpenSans/OpenSans-SemiBoldItalic.ttf);
    font-weight: 600;
    font-style: italic;
}

body {
    margin: 0;
    font-family: OpenSans, sans-serif;
    font-weight: 600;
}

.menubar {
    background-color: #111;
    width: 100%;
    height: 5vw;
}

.menubar img {
    height: 100%;
    width: auto;
    float: left;
    padding-left: 5px;
    border-bottom: 5px solid #111;
}

.menubar>.menubar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border-bottom: 5px solid #111;
}

.menubar-item {
    color: white;
    height: 100%;
}

.menubar-item:hover {
    border-bottom: 5px solid #ccc;
}

.menubar-item a {
    color: white;
    text-decoration: none;
    height: 100%;
    line-height: 5vw;
}