@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;600&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* border: 0.5px dashed red; */
}

body{
    font-family: "Roboto Mono", monospace;
    color: #edf0f1;
    background-color: #23303C;
}


li {
    list-style: none;
}

.Heading h1 {
    font-family: "Roboto Mono"  monospace;
    font-weight: 600;
    color: #edf0f1;
    text-decoration: none;
    margin-right: auto;
}

li, a{
    font-weight: 400;
    font-size: 1em;
    color: #edf0f1;
    text-decoration: none;
}

.Heading {
    display: flex;
    align-items: center;
    padding: 1.5em 5%;
    background-color: #23303C;
}

.Navbar li {
    overflow: hidden;
    display: inline-block;
    padding: 0em 1.1em;
}


.Navbar li a:hover {
    color: #0088a9;
}

.Dropdown{
    float: left;
    overflow: hidden;
}

.Dropdown a {
    font-size: 1em;
    border: none;
    outline: none;
    color: #edf0f1;
    padding: 0.95em 1em;
    background-color: inherit;
    font-family: inherit;
    margin: 0; 
}

.Dropdown_Content {
    display: none;
    position: absolute;
    min-width: 10em;
    background-color: #23303C;
    box-shadow: 0em 0.5em 1em 0em rgba(0,0,0,0.2);
    z-index: 1;
}

.Dropdown_Content li a {
    float: none;
    color: #edf0f1;
    padding: 0.9em 1em;
    text-decoration: none;
    display: block;
    text-align: left;
}

.Dropdown:hover .Dropdown_Content {
    display: block;
}

.content {
    background-color: #354553;
}

.Intro_Wrapper{
    display: flex;
    justify-content: flex-start;
    padding: 2em 4em;
}

.Intro {
    display: flex;
    background-color: #557085;
    padding: 2em;
    font-size: 1.3em;
    box-shadow: 3px 3px 5px 2px black;
}

.Prototyping {
    display: flex;
}

.column {
    background-color: #557085;
    border-radius: 1.5em;
    box-shadow: 3px 3px 5px 2px black;
    padding: 1.5em;
    max-width: 50%;
}

.column p:not(.Title){
    padding: 1em;
}

#Pencil_And_Paper {
    margin-right: 2em;
}

#Simple_Game_Engines {
    margin-left: 2em;
}

.Title {
    font-size: 2em;
    text-align: center;
}

#Game_Engines_Images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#Construct_3 img{
    display: inline;
    margin: 0em 1em;
    background-color: #23303C;
}

.Prototyping::after {
    content: "";
    display: table;
    clear: both;
}

.Tutorial {
    background-color: #23303C;
    padding: 2em 4em;
}

h3 {
    font-size: 2em;
}

.Tutorial h3 + p {
    padding: 1em 0em;
    font-size: 1.3em;
}

.Prototype_Examples {
    display: flex;
    justify-content: space-around;
    padding: 0em 3em;
    font-size: 1.3em;
}

#Prototype_Title {
    padding: 1em 2em 1em;
}

.Prototype {
    font-size: 1.3em;
    text-align: center;
    background-color: #557085;
    padding: 1em;
    border-radius: 1em;
    box-shadow: 3px 3px 5px 2px black;
}

.Prototype p {
    padding-bottom: 0.5em;
}