@font-face {
    font-family: 'Roboto-Custom';
    src: url('Roboto-Light.woff2') format('woff2');
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto-Custom', Arial, sans-serif;
    color: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 58px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 0 10vw;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.nav-links {
    display: flex;
    flex: 1;
}

.navbar a {
    padding: 0 15px;
}

.navbar img {
    width: 40px;
    height: 40px;
}

.dc {
    margin-left: auto;
}

.navbar-text {
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}