*{
    box-sizing: border-box;
}

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

a{
    color: #177591;
}

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

.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;
}

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

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

.spacer{
    height: 100%;
}

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

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

    70% {
        transform: scale(1);
    }

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

.darkmode{
    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);
    }
}