
h1{
	font-family: arial ;
	/*color: DarkMagenta;*/
	color: White;
	font-size: 50px;
}
h2{
    color: White;
    font-family: Montserrat;
}
h3{
    color: White;
    font-family: Montserrat;
}
body {
    background-image: url('hexagono-roxo.png'); /* nome do arquivo da imagem */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: Montserrat;

    
}

.menu-bar {
    
    display: flex;
    flex-direction: row; 
    justify-content: space-around;
    flex-wrap: nowrap;
    /*padding: 10px;*/
    /*gap: 10px;*/
    width: 100%;
}

.menu {
    flex: 1; 
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    background-color: transparent;
    cursor: pointer;
}

.menu:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: White;
}



.btn_login {
    /*width: 100%;*/
    /*height: 100%;*/
    flex: 1; 
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid white;
    border-radius: 8px;
    display: block;
    font-family: Arial;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 20px;
}

.btn_login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row; 
}

.logo_block {
    flex: 0 0 auto;
    max-width: 25%;
}

.logo {
    width: 100%;
    height: auto;
    max-height: 100px;
}

.overload_name {
    flex: 1;
    text-align: left;
}

.overload_name h1 {
    font-size: 3rem;
    margin: 0;
    color: white;
    font-family: 'Arial', sans-serif;
}





table {
    width:100%;
}
.center {
  text-align: center;
  color: red;
}



.corpo{
    
    color: White;
    font-family: Montserrat;
}


.form_login{
    display:none;
}

.form_login_texto{
    color:white;
    
}

.tb_decks{
    /*width: 25%;*/
    height: 25%;
    color: white;
    align-content: center;
    vertical-align: middle;
}
.img_cmd{
  width: 200px;
    height: auto;
}

.col_nm_deck{
    vertical-align: middle;
}
form{
    color: white;
}

a{
    color: white;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
    display: block;
}


 /*Telas menores que 768px (tablets e celulares) */
@media screen and (max-width: 768px) {
  body {
    font-size: 20px;
  }
  .img_cmd {
    width: 100px;
    height: auto;
  }
  
 .tb_decks{
      font-size: 9px;
     
 }
 .menu-bar {
        flex-direction: column;
        align-items: stretch;
    }
.menu {
        width: 100%;
        font-size: 18px;
        margin-bottom: 10px;
    }
.btn_login {
        width: 100%;
        font-size: 18px;
        margin-bottom: 10px;
}
 
 
.header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

.logo_block {
        max-width: 50%;
        margin-bottom: 10px;
    }

.overload_name h1 {
        font-size: 2rem;
    }
    
.ln_decks {
    border: 2px solid white;
    padding: 10px;
    margin: 10px;
    
    
} 
 
.ln_decks th {
    border: none; /* evita borda dupla se já existir em .tb_decks */
    padding: 8px;
}

.tb_decks th {
    border: 1px solid white;
    padding: 10px;
}
 
}




/* Telas menores que 480px (celulares) */
@media screen and (max-width: 480px) {
  body {
    font-size: 20px;
  }
.menu-bar {
    flex-direction: column;
    align-items: center;
    width: 100%;
}
}


