@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200&family=Roboto+Slab:wght@100;400&family=Secular+One&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #146C94;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__h1, .vs {
    font-family: 'Secular One', sans-serif;
    margin-bottom: 0;
    color: #F6F1F1;
    font-size: 2em;
}

.header__h4 {
    font-family: 'Inconsolata', monospace;
    color: #AFD3E2;
    font-size: 1em;
}

input[type="radio"] {
    display: none;
}

input:checked + label {
    background-color: #F6F1F1;
    color: #146C94;
}

.seccion-mapa {
    display: flex;
    font-family: 'Roboto Slab', serif;
    font-size: 1em;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(175, 211, 226);
}

#mapa {
    border: 2px solid white;
}

.body__seleccionar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body__h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    margin: 2vh auto;
    text-align: left;
    color: rgb(175, 211, 226);
}

.tarjetas {
    display: flex;
    gap: 10px;
}

.tarjetas__label {
    font-family: 'Roboto Slab', serif;
    display: inline-block;
    width: 180px;
    height: 100px;
    background-color: #19A7CE;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F6F1F1;
}

.tarjetas img {
    width: 50%;
}

.boton--principal{
    background-color: #19A7CE;
    border: 0;
    width: 25%;
    height: 5vh;
    margin: 2vh;
    color: #F6F1F1;
    font-family: 'Roboto Slab', serif;
    border-radius: 20px;
    font-size: 90%;
}

.oculto {
    display: none;
}

.vidas {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2vh 1.4vw;
    font-family: 'Inconsolata', monospace;
    color: #AFD3E2;
}

.p__boton {
    border-radius: 50%;
    height: 9vw;
    width: 9vw;
    margin: 0.5rem;
    font-size: 4.2em;
    border-color: #F6F1F1;
    overflow: hidden;
}

.batalla {
    display: flex;
    justify-content: center;
    align-items: center;
}

.batalla article {
    padding: 1rem;
}

.mensajes {
    margin: 1em;
    padding: 0.5em;
    border: 8px double #F6F1F1;
    color: #146C94;
    background-color: #AFD3E2;
    font-family: 'Inconsolata', monospace;
    font-weight: bold;
}

@media (max-width: 360px) {
    .tarjetas {
        flex-direction: column;
    }

    .vidas {
        flex-direction: column;
    }

    .batalla {
        flex-direction: column;
    }

    #contenedor-barras {
        display: hidden;
    }
}

.costados {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mover {
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    background-color: #19A7CE;
    border: none;
    color: #fff;
}