body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
}
header {
    background-color: #0055a4;
    padding: 15px;
    text-align: center;
}
nav {
    background-color: #003366;
    padding: 10px 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1000;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    display: inline-block;
}
nav ul li a:hover {
    background-color: #0077cc;
    border-radius: 5px;
}
main {
    padding-top: 60px;
    text-align: center;
}
.background {
    background: url('fondoMain.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.logo {
    width: 1000px;
}
.team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}
.team-member {
    background-color: #0055a4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}
.team-member img {
    width: 100%;
    border-radius: 10px;
    height: 450px;
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.schedule-table th, .schedule-table td {
    border: 2px solid black;
    padding: 10px;
    text-align: center;
}
.schedule-table th {
    background-color: #0055a4;
}
.schedule-table td {
    background-color: white;
    color: black;
}
.schedule-table .closed {
    background-color: red !important;
}
.prices {
    margin-top: 30px;
    background-color: #0055a4;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.prices h2 {
    margin-bottom: 15px;
}
.prices ul {
    list-style: none;
    padding: 0;
}
.prices ul li {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact iframe {
    width: 80%;
    height: 400px;
    border: none;
    margin-top: 20px;
}
.contact a {
    color: white;
    text-decoration: none;
}