body {
    font-family: Arial, sans-serif;
    background: url('../img/arene.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.music-control {
    position: absolute;
    left: 625px;
    top: 90px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: #444;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #666;
}

.btn.active {
    background: goldenrod;
}

.fight_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action{
    display: flex;
    align-items: center;
    width: 100%;
    margin: 10px;
    justify-content: space-around;
}

.Persona{
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat{
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 20px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

h1{
    color: black;
}

.vs{
    height: 120px;
    width: 120px;
    border: none;
}

img{
    height: 500px;
    width: 500px;
    border-radius: 20px;
}

.button {
    background-color: #ffcc00;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .button:hover {
    background-color: #ffaa00;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .button:active {
    background-color: #e69500;
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }