body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.radio-player {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.radio-player img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.radio-player h2 {
    color: #ff007f; /* Color similar al rosa del logo */
    font-size: 24px;
    margin-bottom: 5px;
}

.radio-player p {
    color: #ff007f; /* Color similar al rosa del logo */
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-player p img.icon-location {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.radio-player audio {
    width: 100%;
    margin-top: 20px;
}

.contact-info {
    margin-top: 20px;
    font-size: 16px;
}

.contact-info a {
    color: #0073e6;
    text-decoration: none;
    margin: 0 5px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info a img.icon-social {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

