* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
}

.hide-it {
    display: none;
}

/*-------------------------------------------------------------------------------------------------------------*/

.difficulties {
    width: 998px;
    height: 698px;
    border: 1px solid black;
    margin-top: 10px;
    display: flex;
    flex-direction: column;    
    justify-content: space-evenly;
}

.game-title {    
    align-self: center;
    font-size: 50px;
    font-style: italic;
}

.ui-difficulties {    
    align-self: center;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    height: 290px;
    justify-content: space-evenly;
    align-items: center;
    font-size: 25px;
}

.btn-diff-easy,
.btn-diff-med,
.btn-diff-hard {
    width: 100px;
    height: 70px;
    font-size: 25px;
    font-style: bold;
}

/*-------------------------------------------------------------------------------------------------------------*/

.maps {
    width: 998px;
    height: 698px;
    border: 1px solid black;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    justify-content: space-around;
}

.game-maps-title {
    align-self: center;
    font-size: 50px;
    font-style: italic;
}

.ui-maps {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 100px;
}

/*-------------------------------------------------------------------------------------------------------------*/

.game-screen {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    justify-content: space-evenly;
}

.extra-board {
    margin-top: 10px;    
    display: flex;
    justify-content: space-around;
}

.restart-btn {
    width: 150px;
    height: 60px;
    font-size: 30px;
}

.counting-score {
    display: flex;
    align-items: center;
    font-size: 30px;
}

/*-------------------------------------------------------------------------------------------------------------*/

.controls-container {
    position: fixed;
    left: 0vw;
    font-family: Bahnschrift, sans-serif;
    color: black;
    border: 2px solid black;
    font-size: 150%;
    margin: 10px 10px;
    padding: 10px 10px;
    user-select: none;
}