body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff4500;
}

.centrado{
	text-align: center;
}
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 150px 20px;
    text-align: center;
    margin-top: 60px;
}

.highlight-text-bg {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

.player, .about, .schedule, .contact {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.player h2, .about h2, .schedule h2, .contact h2 {
    color: #ff4500;
}

.schedule ul {
    list-style: none;
    padding: 0;
}

.schedule ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.schedule ul li:last-child {
    border-bottom: none;
}

.logo {
    max-width: 200px; /* Adjust the size as needed */
    height: auto;
    display: inline-block;
    margin: 10px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Adjust the height as needed */
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background-color: #ff4500;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e63900;
}

audio {
    width: 100%;
    height: 50px;
    margin-top: 20px;
}
