body {
    /*background-color: #262626;*/
    background: url('https://help.randmcnally.com/images/blog/blog-kentucky_1280px.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Растягиваем на весь экран по высоте */
    margin: 0; /* Убираем отступы */
    margin-top: -9%;
}

h1 {
    color: white;
    /*font-size:32px*/
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

.copybtn {
    width: 90px;
    height: 30px;
    background-color: #333;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease; /* Добавлено для плавного изменения цвета фона */
}

.onair {
    width: 90px;
    height: 30px;
    background-color: darkred;
    color: grey;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease; 
}

.onair.active {
    width: 90px;
    height: 30px;
    background-color: red;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 25.11397361755371px 0px rgba(245, 1, 66, 0.8);
    transition: background-color 0.5s ease; 
}

/* Обертка для плеера */
.audio-player {
    width: 300px; /* Ширина плеера */
    font-family: Arial, sans-serif; /* Шрифт */
}

/* Стилизация кастомных элементов управления */
.controls {
    display: flex;
    flex-direction: column; /* Располагаем элементы вертикально */
    align-items: center;
    margin-top: 10px;
}

.control-button {
    background-color: transparent; /* Убираем фон */
    color: #333;
    border: none;
    padding: 5px;
    margin: 5px 0; /* Увеличиваем отступ между кнопками */
    border-radius: 5px;
}


.control-button img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.volume-slider {
    width: 100px;
    margin: 10px 0; /* Увеличиваем отступ после кнопок */
}

/* Стили для мобильных устройств */
@media only screen and (max-width: 767px) {
    .control-button {
        cursor: none;
    }
    h1{
        margin-top: -80%;
    }
}

/* Стили для десктопных устройств */
@media only screen and (min-width: 769px) {
    .control-button {
        cursor: pointer;
    }
}