body{
    margin: 0;
    padding: 0;
    text-align: center;
}
#game-container{
    width: 950px;
    height: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: teal;
}
#game-data-container{
    width: 350px;
    height: 700px;
    display: flex;
    flex-direction: column;
}
#game-data-container p{
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    padding: 0 20px 0 20px;
}
#game-data-container h1{
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    padding: 0 20px 0 20px;
}
#map-canvas{
    margin-left: 0;
    margin-right: auto;
    width:600px;
    height: 700px;
    background-image: url(img/map.jpg);
    background-size: 600px 600px;
    background-repeat: no-repeat;
    background-color: yellowgreen;
}
#win-screen{
    flex-direction: column;
    position: fixed;
    left: 20%;
    top: 20%;
    width: 60%;
    min-width: 700px;
    height: 40%;
    min-height: 300px;
    max-height: 300px;
    background-color: yellowgreen;
    border-radius: 10px;
    border: 1px solid greenyellow;
    cursor: pointer;
}
#win-screen h1{
    color: white;
    font-size: 5em;
    line-height: 1em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 20px;
    margin-bottom: 0;
    user-select: none;
}
#win-screen h2{
    color: white;
    font-size: 2em;
    line-height: 1em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    user-select: none;
}
#win-screen p{
    color: white;
    font-size: 1.2em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 10px;
    border: 1px solid white;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 10px 20px;
    user-select: none;
}
.hidden{
    display: none;
}
.visible{
    display: flex;
}