*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}
html{
    background-color: #1f2833;
    user-select: none;
}
header{
    position: relative;
    background-color: #121411;
    height: 60px;
    overflow-x: hidden;
    scrollbar-width: none;
    border-bottom: 2px solid #333d29;
}
h1{
    position: absolute;
    display: inline;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 30px;

    padding: 5px;
    background-color: transparent;
    color: #c5c6c7;
    text-shadow: 0 0 8px rgba(197, 198, 199, 0.3);
    letter-spacing: 4px;
    /*
    color: rgb(35, 100, 126);
    */
}
@media screen and (max-width: 600px){
    h1{
        font-size: 16px;
    }
    .user-status{
        font-size: 8px;
        margin: 20px;
    }
}
#pfp{
    position: absolute;
    border: 1px solid transparent;
    background-color: transparent;
    width: 50px;
    height: 50px;
    content: url(Images/people.png);
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}
header>ul{
    position: absolute;
    list-style-type: none;
    left: 55px;
    color: #45a29e;
    margin: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
header>span{
    position: absolute;
    background-color: #2b2005;
    width: 100px;
    height: 25px;
    top: 50%;
    right: 0%;
    transform: translate(-25%,-50%);
    border-radius: 3px;
    border: 1px solid #d97706;
    text-align: center;
    cursor: pointer;
    box-shadow: inset 0 0 5p rgba(217, 119, 6, 0.2);
}
header>span>p{
    font-size: 14px;
    padding: 5px;
    color: #f4b400;
    font-weight: bold;
    text-transform: uppercase;
}
section{
    position: relative;
    background-color: #0b0c10;
    background: radial-gradient(circle, #1a222d 0%, #0b0c10 100%);
    width: 200px;
    min-height: calc(100vh - 60px);
    border-right: 1px solid #c0c0c044;
}
section>#tools-container{
    position: absolute;
    /*background-color: rgba(31, 40, 51, 0.4);*/
    backdrop-filter: blur(12px);
    width: 175px;
    max-height: 650px;
    margin: 10px;
    background-color: transparent;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    border-bottom: 1px ridge rgb(13, 75, 64);
}
.labels{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
    color: #c5c6c7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
}
.add, .remove, .edit{
    position: relative;
    background-color: transparent;
    width: 100px;
    font-size: 14px;
    padding: 10px;
    height: auto;
}
.add>ul{
    list-style-type: none;
}

/*
use this font color for main content: #bb0011
*/