*{
    box-sizing: border-box;
    font-smooth: always;
    scroll-behavior: smooth;
}

*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: transparent;
    border: none;
}
*::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgba(0,0,0,0.2);
}

html{
    overflow: auto;
}

body{
    background-color: #e8e9e9;
    color: #181818;
    font-family: sans-serif;
    display: flex;
    padding: 0px;
    margin: 0px;
}

a{
    color: #177591;
}

.main-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    height: max-content;
}

.side-box{
    margin: 10px;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.1);
    background-color:rgba(0,0,0,0.05);
    height: calc(100% - 20px);
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 250px;
    position: sticky;
    top: 10px;
}

.navigation-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
}

.logo-box{
    padding: 25px;
    border-radius: 100%;
    background-color: rgba(0,0,0,0.4);
}

.spacer{
    height: 100%;
}

.darkmode-toggle-button{
    background-color: rgba(0,0,0,0.1);
    color: #181818;
    border: none;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    font-size: 20px;
}

.navigation-box a{
    width: 100%;
    border-radius: 8px;
    text-decoration: none;
    color: #0b0b0b;
    transition: background-color 0.2s;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation-box a:has(.navigation-item-selected-header){
    justify-content: flex-start;
}

.navigation-box .navigation-item-selected{
    width: 100%;
    border-radius: 8px;
    height: 30px;
    background-color: rgba(0,0,0,0.3);
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.navigation-box a:hover{
    background-color: rgba(0,0,0,0.2);
}

.navigation-item-selected-header{
    padding-left: 10px;
}

.pulse-logo-box{
    transform: scale(1);
    animation: pulse 2s infinite;
    padding: 50px;
    border-radius: 100%;
    background-color: rgba(0,0,0,0.4);
}

.home-content{
    min-height: 200vh;
}

.home-container{
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color:rgba(255,255,255,0.5);
    padding: 20px;
    width: 60vw;
    max-width: calc(100vw - 250px);
    min-width: 400px;
    margin-bottom: 200px;
    opacity: 0;
    min-height: 500px;
}

.view-point{
    opacity: 0;
    height: 0px;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

.darkmode{
    *::-webkit-scrollbar-thumb {
        background-color: rgba(255,255,255,0.2);
    }
    body{
        background-color: #181818;
        color: #dddddd;
    }
    .side-box{
        border: 2px solid rgba(255,255,255,0.1);
        background-color:rgba(255,255,255,0.05);
    }
    .darkmode-toggle-button{
        background-color: rgba(255,255,255,0.1);
        color: #dddddd;
    }
    .navigation-box a{
        color: #dddddd;
    }

    .navigation-box .navigation-item-selected{
        background-color: rgba(255,255,255,0.3);
        color: black;
    }

    .navigation-box a:hover{
        background-color: rgba(255,255,255,0.2);
    }
}