@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Foldit&display=swap');

body {
    font-family: fantasy;
    background-color: #d7fff7;
}

#seleccionar-mascota {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    color: #088395;
    font-size: 52px;

}

.tarjetas {
    display: flex;
    gap: 10px;    
    
}

.subtitulo{
    color: #102b36;
    font-size: 24px;


}

.tarjeta-de-mokepon {
    width: 180px;
    height: 100px;
    background: #4c9ca8;
    padding: 20px;
    box-sizing: border-box;
    border : 1px solid #0A4D68;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
}

#boton-mascota {
    width: 180px;
    height: 40px;
    border-radius: 20px;
    background: #4c9ca8;
    border: 2px solid #102b36;
    color: #ffffff; 
    font-family: "bruno ace";
}

.tarjeta-de-mokepon img{
    width: 80px; 
}

input {
    display: none;
}

#seleccionar-ataque{
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.boton-de-ataque {
    background-color: #088395;
    padding: 20px;
    box-sizing: border-box;
    border : 1px solid #0A4D68;
    border-radius: 10px;
    margin: 10px;
    border-color: transparent;
    width: 100px;
    color: white;
    font-family: "bruno ace";

}

#mensajes {
    width: 180px;
    background: #088395;
    padding: 20px;
    margin-top: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column; 
}

#boton-reiniciar {
    border: transparent;
    color:#0A4D68


}