body{ /* Sets background of the website to dark grey color */
    margin: 0;
    background-color: rgb(36, 36, 36);
    font-family: 'Courier New', Courier, monospace;
}

.scene-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    max-width: 10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu a {
    display: block;
    border: 1px solid #444;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
}

a:link {
    color:red;
    font-size:20px
}

a:visited {
    color:brown
}

h1 {
    color: rgb(226, 36, 36);
}

h2 {
    color: rgb(226, 36, 36);
}

h3 {
    color: rgb(226, 36, 36);
}

h4 {
    color: azure;
}

/* This controls color of text on whole website. Pragraphs */
/* ########################################### */

p {
    color: rgb(236, 236, 236);
}

/* This controls style of bullet lists */
/* ########################################### */

ul {
  list-style-type: square;
}

/* And this color of text iin bulet lists! */
/* ########################################### */

li {
    color: azure;
}