@charset "utf-8";
* {
    margin:0;
  border: solid 1px chartreuse;

}
body {
  border: solid 3px pink;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
   }
.naipes{
 display: flex;
 flex-direction: row;
    justify-content: center;
}
#zonaBanca{
    border: dashed 10px blue;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#zonaJugador{
    border: dashed 10px violet;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.jugadora{
 border: solid 5px pink;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#tapete {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 5%;
  border: dashed 5px white;
  background-image:url(../imagenes/Tapete.jpg);
}
#zonaBanca {
  width: 35%;
  margin: auto;
  border: solid 3px red;
  text-align: center;
  
}

h1{
  margin: auto;
  color: skyblue;
  border: solid 7px yellow;
}
h2{
  margin: auto;
  color: chartreuse;
  border: solid 6px blue;
 
}

#naipe {
  width: 40%;
  margin-bottom: 5%;
  margin-top: 5%;
}
