body {
    font-family: "Helvetical", "Arial", sans-serif;
    font-size: 15pt;
    background-color: #161616;
    color: #e8e8e8;
    background-image: url(dot-background.gif);
    background-repeat:
}

h1 {
    color: #e8e8e8;
}

p {
    color: #e8e8e8;
}

.container {
    display: flex;
    flex-direction: row; /* direction elements are ordered */
    flex-wrap: wrap; /* determines whether elements wrap when they reach the end of the screen */
    justify-content: space-around; /* creates space between elements */
}

.grid-container {
    gap: 500px;
}

