* {
    margin: 0;
    padding: 0;
}

body {
    background-color:#0d0d0ff8;
}

.top_bar {
    background-color:#090C1B;
    position:fixed;
    margin: -10px;
    padding: 10px;
    height: 50px;
    width: 100%;
    z-index: 2;
}

.logo {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 95px;
    border: 10px solid #090C1B;
}

.main_title {
    position: fixed;
    font-size: 40px;
    font-family: 'Trebuchet MS', sans-serif;
    color: white;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_bar_button_flex {
    position: fixed;
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    right: 10px;
    top: 12px;
}

.button {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 25px;
    font-size: 20px;
    background: #0d0d0ff8;
    color: white;
    margin-left: 10px;
    /* border: 4px solid #0d0d0ff8 */
}

.nexus {
    position: absolute;
    top: 140Px;
    /*background-color: #203ab9;*/
    width: 100%;
    height: 100%;
}

.node {
    animation: nodeFlash 2s infinite;
    background-color: #0d0d0ff8;
    color: white;
    width: 5vw;
    aspect-ratio: 1;
    border-radius: 2.5vw;
    position: absolute;
    font-size: 0.75vw;
    transition: all 0.5s;
}

.node:hover {
    border-radius: 1vw;
    width: 10vw;
    aspect-ratio: 1/1.6;
    border: 0px #0d0d0ff8;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    transform: translate(-2.5vw, -3.25vw);
    z-index: 1;
}

@keyframes nodeClick {
    50% {
        border-radius: 10px;
        width: 133px;
        height: 166px;
    }
    100% {
        border-radius: 30px;
        width: 200px;
        height: 300px;
    }
}

@keyframes nodeFlash {
    0% {
        background-color: #0d0d0ff8;
    }
    50% {
        background-color: #1a1a1af8;
    }
    100% {
        background-color: #0d0d0ff8;
    }
}

@keyframes linkFlash {
    0% {
        stroke: #0d0d0ff8;
    }
    25% {
        stroke: #1a1a1af8;
    }
    50% {
        stroke: #222222f8;
    }
    25% {
        stroke: #1a1a1af8;
    }
    100% {
        stroke: #0d0d0ff8;
    }
}
