* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #18160D;
    color: #FFEAAD;
    font-family: "Roboto", sans-serif;
}
header {
    margin-top: 20px;
    font-size: 3em;
    text-align: center;
}
.about {
    padding: 3em;
}
.socials {
    text-align: center;
}
.home-content {
    display: flex;
    margin-bottom: 1em;
    min-height: 100vh;
}
.content-container {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}
.content-container a {
    color: #FFEAAD;
}
.content-container a:hover {
    color: antiquewhite;
}
.socials ul{
    list-style-type: none;

}
.socials ul > a:hover {
    color: antiquewhite;
}
.game-page {
    display: flex;
    justify-content: center;
    color: antiquewhite;
    width: auto;
    margin-right: 1em;
}
.game-page a {
    color: #FFEAAD;
}
.game-page a:hover {
    color: antiquewhite;
}
.projects-container {
    display: inline-block;
    vertical-align: top;
    margin-top: 1em;
    margin-left: 1em;
    padding: 10px;
    background-color: #272415;
    border-style: solid;
    min-width: 1em;
}
.projects-container h1 {
    border-bottom: 2px solid antiquewhite;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.projects-container ul { 
    display: inline-block;
    padding-left: 30px;
}
.side-container {
    display: inline-block;
    vertical-align: top;
    margin-top: 1em;
    margin-left: 1em;
    padding: 10px;
    background-color: #272415;
    border-style: solid;
    height: 100%;
    max-width: 30em;
    
}
.side-container h1 {
    border-bottom: 2px solid antiquewhite;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.side-container ul { 
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 10px;
}
.side-container li {
    color: antiquewhite;
}
.side-container p {
    margin: 0;
    padding-left: 1em;
}
.side-container a {
    color: #FFEAAD;
}
.side-container a:hover {
    color: antiquewhite;
}
.game-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: antiquewhite;
}
.display-container {
    display: inline-block;
    vertical-align: top;
    margin-top: 1em;
    margin-left: 1em;
    min-width: 305px;
    min-height: 210px;
    max-height: fit-content;
    background-color: #272415;
    border-style: solid;
}
.display-container h1 {
    margin: 5px;
    text-align: center;
}
.display-container img {
    display: block;
    width: 300px;
    height: auto;
    margin: 0 auto;

}
.header-container {
    border-bottom: 5px solid antiquewhite;
}
@media (max-width: 940px) {
    .home-content {
        flex-direction: column;
        align-items: center;
    }
    .side-container {
        width: 90%;
        height: auto;
        position: static;
        margin: 1em 0;
    }

    .content-container {
        width: 100%;
        padding: 0 1em;
        justify-content: center;
    }

    .game-page {
        display: block;
        width: 100%;
        padding: 0 1em;
        justify-content: center;
    }

    .inner-content {
        width: 100%;
        align-items: center;
    }

    .display-container {
        width: 90%;
        min-width: unset;
        max-width: 100%;
    }

    .display-container img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}
.navbar ul{
    list-style-type: none;
    background-color: black;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.navbar a {
    color: #FFEAAD;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.navbar a:hover {
    background-color: #272415;
    color: antiquewhite;
}
footer {
    display: flex;
    justify-content: center;
}
footer ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    text-align: center;
}


/* Required */
.game-div {
    display: flex;
    justify-content: center;
}
#bouncing_dvd_canvas{
    background: white;
    border: 5px solid black;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}
#dodging_game_canvas{
    background: white;
    border: 5px solid black;
    position: relative;
}
.default_canvas{
    background: white;
    border: 5px solid black;
    position: relative;
}
.no_bg_canvas {
    position: relative;
    box-sizing: border-box;
}
.canvas-container {
    width: 100%;
    height: 100%;
}
#canvas_main {
    position: relative;
    top: 0;
    left: 0;
    background: white;
    box-sizing: border-box;
}
.assets {
    display: none;
}
.WebGL_3d_canvas{
    background: white;
    border: 5px solid black;
    position: relative;
}
.WebGL_showcase_canvas{
    background: white;
    position: relative;
}