.navbar {
    display: flex;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: grey;
}

.navbar .left {
    float: left;
    display: flex;
    align-items: center;
}

.navbar .left img {
    margin-left: 30px;
}


.navbar .left h3 {
    color: rgb(255 255 255 / 70%);
    margin-left: 5px;
    font-family: sans-serif;
    font-weight: 100;
    font-size: 20px;
}


.navbar .right {
    float: right;
    position: absolute;
    right: 30px;
}

.navbar .right a {
    text-decoration: none;
    color: rgb(245 245 245);
    font-family: sans-serif;
    font-weight: 100;
    font-size: 15px;
}

.navbar .navlink {
    margin: 0px 15px 0px 15px;
    text-decoration: none;
    color: rgb(245 245 245);
    opacity: 0.7;
}

.navbar .navlink:hover {
    opacity: 1;
}

.active {
    color: rgb(255,198,11) !important;
    opacity: 1 !important;
}