html, body {
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #3958F5;
    height: 86px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.logo {
    width: auto;
    height: 60px;
}

.right-links {
    margin-right: 15px;
}

.content {
    padding-top: 100px;
}
