 @font-face {
      font-family: 'fonteMemoria';
      src: url('../fontes/BebasNeueBold.otf') format('opentype'); /* Caminho da fonte TTF e formato */
    }



* {
    box-sizing: border-box;
}

body {
    font-family: 'fonteMemoria',Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0!important;
    padding:0!important;
	background-size: cover;
	background-position: center center;
	min-width:100%!important;
	min-height:100vh!important;
}

.container {
    text-align: center;
}

.w100{
	width: 100%!important;
}

.game-board {
    /*
    display: grid;
    grid-template-columns: repeat(4, 100px);
    grid-gap: 10px;
    margin: 20px auto;
    */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border:0px solid #ccc;
    width:100%;
    max-width: 930px;
    border-radius: 15px;
    padding:15px 0 15px;
    margin: 25px auto 25px auto;
}

.card {
    width: 200px;
    height: 200px;
    background-color: #006699;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    border-radius: 0px;
    background-image: url("../img/logo-motu-branco.png");
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    margin: 10px;
    border:0px solid #ccc;
    box-shadow: 2px 2px 15px #3a3a3a;
   
}

.card img {
    width: 100%;
    height: 100%;
    display: none;
    border-radius: 5px;
    
}

.card.flipped img {
    display: block;
}

.cartaVirada{
    opacity: 0.1;
}
/*
@media (max-width: 600px) {
    .game-board {
        grid-template-columns: repeat(2, 80px);
    }
    .card {
        width: 80px;
        height: 80px;
    }
}
    */

.fundo-carta{
    background-color: #fff;
    border-radius: 5px;
}

.placar{

    font-size:12px;
    line-height: 20px;

}

.placarNumero{
    font-size: 40px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0 15px;
}

.botao-memoria{
    background-color: #006699;
    color:#fff;
    padding:20px 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size:30px;
}




#formCadastro{
	background-color: #fff;
	margin: 0 auto;
	max-width: 400px;
	width:100%;
	text-align: center;
	padding: 50px;
	border-radius: 15px;
}

.linhaForm{
	margin: 15px 0 0 0;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
}

label{
	display: inline-block;
	width: 100%;
}


.area-premios{
	background-color: #fff;
    overflow: hidden;
	border-radius: 15px;
	padding:15px 5px 0px 5px;
	margin:15px auto;
	max-width: 480px;
	width:100%;
}

.area-imagem{
	background-color: #eaeaea;
	border:1px solid #ccc;
	border-radius: 15px;
	padding: 15px;
	display:flex;
	justify-content: center;
	align-items: center;
	min-height: 180px;
	margin-top: 15px;
}

.area-imagem img{
	max-width:150px;
}


#modal{
    position:fixed;
    width: 100%;
    height: 100vh;
    top:0;
    left:0;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:999999;
}

#modal-conteudo{
    padding:25px;
    min-width: 300px;
    min-height:200px;
}

.modal-fechar{
    width:100%;
    text-align: right;
    font-size:25px;
}