

:root{
    --primary-color:black;
    --secondary-color:red;
    --background-color:  grey;
    --navigationContainer--height: 60px;
}

*{
    padding:0;
    margin: 0;
    font-family: 'Belanosima', sans-serif;
}

*::-webkit-scrollbar{
    display: none;
}



.mainContainer{
    display: flex;
    flex-direction: column;
    background-color: #FCF1B9;
    width: 100vw;
    height: 100vh;
}



.contentContainer{
    background-color: #FCF1B9;
    width: 100%;
    height: calc(100%-var(--navigationContainer--height));
    /* overflow: scroll; */


}

.game-Button{
    height: 35px;
    width:60%;
    margin-top: 20px;
    background-color: #A3282E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /*font-weight: bold;*/
    border-radius: 2px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    border: 4px double #cccccc;
}


.game-Button:hover {background-color: #254C6D}

.game-Button:active {
  background-color: #89A295;
  box-shadow: 0 2px #666;
  transform: translateY(4px);
}

/*NAV BAR*/
.navigationContainer{
    display: flex;
    align-items: center;
    background-color:  #3677AA;
    height: var(--navigationContainer--height);
    width: 100%;
    flex-direction: row;
    color: white;
    border-bottom: #2B3848 2px solid;
    /* border-top-left-radius: 20px;
    border-top-right-radius: 20px;  */
    /* margin-top: 20px;     */

}

.nav-back-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 2px;
    font-size: 25px;
    /*font-weight: bold;*/
    color:white;
    background-color: brown;
    height: 30px;
    margin-left: 20px;
    margin-top: 2px;
    position: fixed;
    width:55px;
    cursor: pointer;
    border: 4px double #cccccc;
    border-radius: 10px;
}

.nav-back-btn:hover {
    background-color: #254C6D;
}

.nav-back-btn:active {
  background-color: #89A295;
  box-shadow: 0 2px #666;
  transform: translateY(4px);
}



.nav-title{
    display: flex;
    justify-content: center;
    font-size: 29px;
    font-weight: bold;
    width: 100%;
    /*text-align: center;*/
    width:100%;
    /*border: red dotted 1px;*/
    /*background-color: blueviolet;*/
    /*margin-right: 80px;*/
    text-decoration: underline;

}

.ControllerView-fadeContainer{
    width:100%;
    height: 100%;
    background-color: #F2E296;
    position: fixed;
}

.ControllerView-container{
    width:100%;
    height: 100%;
}


@media (min-width:200px) {
 .game-Button{
    max-width: 350px;
 }

 .playView-cardsContainer{
    max-width: 250px;
 }

 .playView-hudcontainer{
    max-width: 350px
 }

}


@media (min-width:200px) {
    .game-Button{
        max-width: 350px;
    }

    .playView-cardsContainer{
        max-width: 250px;
    }

    .playView-hudcontainer{
        max-width: 350px
    }

}

@media (max-width:345px) {
    .nav-back-btn{
        width: 28px;;
    }
}








