@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 20px;
  background: #fff;
}
.imagen-derecha {
  position: absolute;
  top: 40px;     
 left: 60px;   
  width: 90px;  
}

h1 {
  margin-bottom: 10px;
}

.campo-batalla {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid red;
  padding: 30px;
  border-radius: 20px;
  gap: 30px;
}

.caja-batalla {
  margin: 25px;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-mensajes {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.img-batalla {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.btn-ataques {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 20px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: none;
  background: transparent;
}

.btn-ataques:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  outline: 2px solid rgba(255, 0, 0, 0.15);
}