body {
    font-family: Arial, sans-serif;
    background: url('../img/win_screen.jpg') no-repeat center center fixed;
    background-size: cover;
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.img_gagnant{
    background-color: rgb(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 20px;
    width: 600px;
    color: white;
}

img{
    border-radius: 20px;
    height: 500px;
    width: 500px;
}

.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);
  }

.music-control {
    position: absolute;
    top: 25px;
    left: 40px;
    margin-top: 20px;
    color: white;
    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;
}
