:root{
    --primaryColor: rgb(8, 93, 221);
}

.nav-button:hover{
    color: var(--primaryColor);
}

.nav-button:hover::after{
    background-color: var(--primaryColor);
    transform: scaleX(1);
}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 150px;
}

canvas {
    background-color: black;
    border: black 1px solid;
}

.algorithm-button {
    background-color: var(--primaryColor);
    min-width: 190px;
    border-radius: 16px;
    padding: 12px 16px 12px 16px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.1s;
}

.algorithm-button:hover{
    background-color: rgb(7, 83, 197);
}

.algorithm-button:active{
    background-color: rgb(6, 73, 171);
}

.algorithm-grid{
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 10px;
    margin-top: 16px;
}