* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham Medium', sans-serif;
    background-color: white;
    color: #003C7E; /* Best Western Blue */
    background-image: url('../img/bg1.png'); /* Imagen de fondo */
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1, h2 {
    color: #0072BC; /* Best Western Blue */
}

table {
    width: 100%;
    border-collapse: separate; /* Permite la separación entre las celdas */
    border-spacing: 15px; /* Espaciado horizontal y vertical entre las celdas */
    margin: 20px 10px;
}

th, td {
    font-size: 17px;
    padding: 20px; /* Espaciado interno del contenido */
    text-align: center;
    background-color: rgba(0, 60, 126, 0.7);/* Fondo azul para cada celda */
    color: white; /* Texto blanco */
    border-radius: 10px; /* Bordes redondeados para cada celda */
}

.schedule {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.day {
    background: linear-gradient(45deg, rgba(0,114,188,1) 0%, rgba(0,60,126,1) 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.actividad {
    margin-bottom: -10px;
    background-color: rgba(0, 60, 126, 0.85);
    color: #f2f2f4;
    text-align: center;
}
.actividad2 {
    margin-bottom: -10px;
    background-color: rgba(0, 114, 188, 0.85);
    color: #f2f2f4;
    text-align: center;
}
@font-face {
    font-family: 'costa';
    src: url('../fonts/CostaPtf-Demi.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-family: 'costa', sans-serif;
}

/* Estilos responsivos para pantallas pequeñas */
@media (max-width: 768px) {
    .schedule {
        flex-direction: column;
    }
    .day {
        max-width: 100%;
        margin-right: 0;
    }
}

footer {
    padding: 10px 0;
    color: #003C7E;
    text-align: center;
}

.header{
    margin-left: 15rem;
    align-content: center;
    align-items: center;
}
.title{
    display: inline-block;
    font-size: 42px;
}
.badge{
    display: inline-block;
    height: 9%;
    width: 9%;
}
.void{
    display: inline-block;
    width: 20rem;
}
