*:root {
    --primary-color: #000000;
}

* {
    box-sizing: border-box;
}

h1,
a {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.header {
    top: 0;
    width: 100%;
    background: black;
    display: flex;
    gap: 20px;
    padding: 15px;
}

.header .title {
    color: white;
    font-size: 30px;
    font-style: italic;
    font-weight: bold;
    flex: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    gap: 20px;
    color: white;
    margin-right: 5px;
}

.navbar a {
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: 0.3s;
    font-size: 20px;
}

.navbar a:hover {
    color: lightskyblue;
}

/* sidebar */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    background: #f0f0f0;
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -200px;
    transition: 0.5s;
}