.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #050505;
    padding: 10px 20px;
}
.navbar-title {
    color: white;
    font-size: 24px;
    position: relative;
}
.navbar-title img {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
}
.navbar-links {
    color: white;
    margin-left: 100px;
    display: flex;
    align-items: center;
}
.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}
.navbar-links a:hover {
    text-decoration: underline;
}