body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: white;
    background-color: rgb(13, 13, 13);
    scroll-behavior: smooth !important;
    display:flex;
    justify-content: space-between;
    overflow:hidden;
}

a:hover {
    cursor: pointer;
}

.flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar {
    margin: 0;
    padding: 0;
    color: white;
    width: 100px;
    min-width:100px;
    max-width: 100px;
    background-color: rgb(20 20 20);
    position: relative;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

hr {
    border: 2px solid rgb(60 60 60);
}

#app_container {
    position:right;
}

.sidebar a {
    display: block;
    color: white;
    padding-top: 16px;
    padding-bottom: 16px;
    text-decoration: none;
}

.sidebar a.active {
    font-weight: bold;
    color: rgb(221 83 109)
}

.sidebar a:hover:not(.active) {
    font-weight: bold;
    color: rgb(17 170 204)
}
.sidebar {
    border-right: 4px solid rgb(60 60 60);
}
/*
@media screen and (min-width: 900px) {
    .hideonpc {
        display: none;
    }
    .sidebar {
        border-right: 4px solid rgb(60 60 60);
    }
}

@media screen and (max-width: 900px) and (min-width: 674px) {
    .hideontablet {
        display: none;
    }
}

@media screen and (max-width: 674px) {
    .hideonmobile {
        display: none;
    }
        .sidebar a {
        text-align: center;
        float: none;
    }

    .sidebar a {
        font-size: min(1.75rem, 15vw);
    }
}

@media screen and (max-width: 900px) {
    .sidebar a {
        float: left;
    }

    body {
        flex-direction: column;
        overflow:hidden;
    }


    div.content {
        margin-left: 0;
    }

    .sidebar {
        width: 100%;
        height: 50px;
        position: relative;
    }
}*/