
body{
    margin: 0;
}

.hidden{
    display: none;
}

.container{
    background-image: url("img/tileset_map.png");
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
}

.top-section{
    /* border: 2px solid green; */
    align-items: center;
    height: 400px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background-image: url("img/water_tile.png");
    color: orangered;
}

.top-section img{
    image-rendering: pixelated;
    width: 75%;
}

.nav-bar{
    display: flex;
    justify-content: space-around;
    background-color: black;
    user-select: none;
}

.nav-bar>div{
    padding: 5px;
    width: 200px;
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.nav-bar>div:hover{
    background-color: #393939;
    color: black;
}

.bottom-section{
    /* border: 2px solid blue; */
    padding: 20px;

}

.info-section{
    border: 2px solid black;
    display: flex;
    background: #0000009e;
    margin: 20px;
    color: white;
    align-items: center;
}

.info-section img{
    width: 200px;
    image-rendering: pixelated;
    border: 2px solid black;
    margin: 20px;
}

.info-section .inner-info-section{
    position: relative;
}

.right-side{
    text-align: end;
    display: flex;
    justify-content: flex-end;
}

.download-link{
    text-decoration: none;
    color: white;
    border: 2px solid #525252;
    background-color: #aaa;
    border-radius: 5px;
    padding: 5px;
    /* position: absolute; */
    /* bottom: 0; */
}

.bottom-connect-section{
    display: flex;
    justify-content: center;

}

.bottom-connect-section .inner-connect-section{
    border: 2px solid black;
    width: 200px;
    text-align: center;
    margin: 10px;
    background:#0000009e;
    padding: 10px;
    color: white;
}

.bottom-connect-section .inner-connect-section a, .inner-info-section a{
    color: aqua;
}

.github-logo{
    height: 64px;
    width: 64px;
}