*{
    margin: 0px;
    padding: 0px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: large;
    text-transform: uppercase;
}

nav {
    background-color: black;
    color: white;
    display: grid;
    grid-template-columns: 30% 60%;
    column-gap: 10%;
    padding: 0% 5%;
}

nav .array-inputs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    padding: 5% 0%;
}

nav .array-inputs #arrayGenerate{
    grid-column-start: 1;
    grid-column-end: 3;
}

nav .header-right{
    display: flex;
    flex-direction: column;
}

nav .header-right .algorithm .selected {
    background-color: white;
    color: green;
}

nav .header-right .nav-heading {
    display: inline-block;
    font-size: xxx-large;
}

section{
    display: grid;
}

section #arrayContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 35vh;
}

.button {
    text-align: center;
}

.hide{
    display: none;
}