/* Root */
:root {
    --font-color: rgba(31, 31, 31, 1);
    --borderstyle: 1px solid rgba(0, 0, 0, .2)
}

/* Base */
html {
    scroll-behavior: smooth;
}
* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--font-color);
    text-decoration: none;
    border: none;
    margin: 0;
}

/* Elements */
.item-navbar {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;

    position: static;
    top: 0;
    left: 0;

    background-color: rgb(255, 255, 255, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.item-navbar .title {
    font-weight: bold;
    font-size: 25px;
}

.item-navbar .vertical-hr {
    width: 60%;
    height: 1px;
    margin: 7px 0 7px 0;
    border-bottom: var(--borderstyle);
}
.item-navbar .horizontal-hr {
    width: 1px;
    height: 75%;
    margin: 0 7px 0 7px;
    border-left: var(--borderstyle);
}

.item-navbar .item-links {
    align-items: center;
}
.item-links a {
    transition: 0.5s;
}