* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue';
}

html,
body {
    overflow: hidden;
    background-color: black;
}

svg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    position: relative;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    background-color:  #E6E7EB;
    display: grid;
    grid-template-columns: repeat(10,10%);
    grid-template-rows: repeat(10,10%);
    max-height: 100vh;
    margin: 10px;
    border-radius: 5px;
}

#mainTitle {
    grid-row: 2;
    grid-column: 2/11;
}

.title {
    font-size: 60px;
    font-weight: bold;
}

.display {
    min-width: 0;
    min-height: 0;
    grid-column: 1/6;
    grid-row: 3/11;
    border-radius: 5px;
}

.webgl {
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 5px;
}

#potentialPlot {
    grid-row: 3/10;
    grid-column: 6/11;
}