@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;
}

img {
    box-shadow: 3px 3px 5px 2px black;
    border-radius: 2em;
}

.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;
}

.Intro {
    display: flex;
    padding: 1em 20em;
    background-color: #354553;
}

.Intro_Text {
    display: flex;
    align-items: center;
    padding: 2em;
    font-size: 1.4em;
}

.game_engines {
    padding: 2em;
}

.game_engines h3 {
    font-size: 1.4em;
}

.game_engine_items {
    padding: 1em;
    display: flex;
}

.game_engine {
    background-color: #354553;
    border-radius: 2em;
    margin: 2em;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30em;
    box-shadow: 3px 3px 5px 2px black;
}

.game_engine img {
    padding: 0.75em;
    margin: 1em;
    background-color: #046983;
}

.jobs {
    padding: 2em;
}

.jobs h2 {
    padding: 1em 0em;
}

.jobs img {
    padding: 0.75em;
    margin: 1em;
    background-color: #046983;
    box-shadow: 3px 3px 5px 2px black;
}

.jobs_title{
    display: flex;
    align-items: center;
}

.job_roles ul {
    display: flex;
    flex-wrap: wrap;
    background-color: #354553;
    box-shadow: 3px 3px 5px 2px black;
    border-radius: 2em;
}

.job_roles ul li {
    padding: 1em;
    font-size: 1.2em;
}
