body {
    font-family: Arial, sans-serif;
    padding: 10;
    margin: 0;
    width: 100%;
    background: url('../img/back.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/*Tableau*/

table {
    background-color: rgba(0, 0, 0, 0.6);
    margin: 20px;
    color: white;
}

table img {
    height: 200px;
    width: 200px;
}

/*Formulaire*/

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
    padding: 30px;
    margin: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    color: white;
}

form div {
    width: 100%;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

form input[type="file"] {
    background: none;
    border: none;
}

button {
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

a{
    color: red;
}

/*Controls de la musique*/

.music-control {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.button {
    background-color: #ffcc00;
    margin: 20px;
    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);
  }

.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;
}