:root {
    --bg-color: rgb(36, 33, 30);
    --color: rgb(235, 227, 227);
    --colorFicha:rgba(20, 19, 19, 0.877);
    --border: #9b9b9b;
    --teamAcolor: rgb(155, 186, 233);
    --teamBcolor: rgb(238, 147, 147);
    --bg-btn:rgb(237, 255, 196);
}

body {
    background-color: var(--bg-color);
    color: var(--color);
}

#app {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-flow: row wrap;
    width: 80%;
    align-items: center;
}

img {
    max-height: 150px;
    max-width: 95%;
    width: auto;
    border-radius: 10px;
    display: block;
    margin: auto;
}

#marcador {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    align-items: center;
}

#countdown {
    min-height: 40px;
    font-size: xx-large;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--border);
    font-size: 1.3rem;
    color: var(--color);
    outline: 0;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: transparent;
}


/* .form__field:placeholder-shown~.form__label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
} */

.form__item {
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.3rem;
    color: var(--color);
}

.form__item span {
    padding: 0px;
    margin: 0px;
    min-width: 100px;
}

#tablero {
    width: 100%;
    font-size: xx-large;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    align-items: center;
}

#ficha {
    margin-top: 20px;
    color: var(--colorFicha);
    height: 300px;
    width: 180px;
    background-color: blanchedalmond;
    border: 1px solid black;
    border-radius: 1em;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.colorA {
    background-color: var(--teamAcolor);
}

.colorB {
    background-color: var(--teamBcolor);
}

.separator {
    border: 1px solid black;
    width: 80%;
}

button {
    height: 40px;
    width: 80px;
    background-color: var(--bg-btn);
    border-radius: 5px;
    margin: 15px;
}


/* MODAL */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: var(--color);
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid var(--border);
    width: 80%; /* Could be more or less, depending on screen size */
    color: var(--bg-color);
    text-align: center;
    align-items: center;
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* FIN MODAL */