

::-webkit-scrollbar {
    display: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration-line: none;
    color: #76a99d;
}

.high_text {
    font-family: 'Chixa';
    font-size: 40px;
    word-wrap: break-word;
    color: #a6aabd;
}

.norm_text {
    font-family: 'Chixa';
    font-size: 30px;
    word-wrap: break-word;
    color: #848797;
}

.low_text {
    font-family: 'Chixa';
    font-size: 25px;
    word-wrap: break-word;
    color: #565862;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000;
    overflow: hidden;
}


.header {
    display: flex;
    flex-direction: row;
    justify-items: center;
    gap: 30px;
    padding: 20px;
    z-index: 10;
    position: sticky;
    width: 100%;
    height: 70px;
    left: 0px;
    top: 0px;
    background: #0d0e10;
    color: #e1e3e6;
    align-items: center;
    border: solid;
    color: #2f3034;
}

.header .icon {
    display: none;
}

.main {
    display: flex;
    flex-direction: row;
    
    align-self: stretch;
    flex-grow: 1;
    overflow: hidden;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    position: static;
    min-width: 420px;
    left: 0px;
    top: 0px;
    background: #0d0e10;
    border: 4px solid #2f3034;
    box-sizing: border-box;
    color: #C4C4C4;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    overflow: hidden;
}

.elem_menu {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #e1e3e6;
}

.shadow {
    filter: drop-shadow(4px 4px 0px #4B4B4B); 
}

.icon-btn {
    width: 60px;
    height: 60px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    align-self: stretch;
    flex-grow: 1;
    background: #16171b;
    border: 4px solid #2f3034;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 768px;
    width: 100%;
    height: auto;
    padding: 30px;
    border: 4px solid #2f3034;
    background-color: #202125;
    align-items: center;
}

.button {
    border: 4px solid #2f3034;
    background: #3d3f46;
    padding: 10px 20px;
    align-self: flex-start;
}
