* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

.container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* Стилизация аудиоплеера */
audio {
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
}

/* Для браузеров на базе WebKit (Chrome, Safari) */
audio::-webkit-media-controls-panel {
    background-color: #333;
}

audio::-webkit-media-controls-play-button {
    background-color: #fff;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #fff;
}