body {
background-color: gainsboro;
font-family: sans-serif;
margin: 0;
padding: 20px;

}
.header{
    min-width:100vw ;
    min-height: 50px;
    display: flex;
    justify-content: center;
}
.header__list{
    min-width: 100%;
    min-height: 100%;
    justify-content: center;
    list-style-type: none;
    display: flex;
}
.header__section{
    padding: 0px 60px;
}
.header__links{
    text-decoration: none;
    color: black;
}


h1 {
color: black;
text-align: center;
font-size: 2em;
margin-bottom: 30px;
}

h2 {
color: #000000;
border-bottom: 2px solid #666;
padding-bottom: 5px;
}

.viernes {
margin-bottom: 30px;
background-color: cyan;
border:2px solid black
}

.sabado {
margin-bottom: 30px;
background-color: aquamarine;
border:2px solid black
}

.domingo {
margin-bottom: 30px;
background-color: lightgreen;
border:2px solid black
}

ul {
list-style-type: none;
padding-left: 0;
}

p {
margin-bottom: 10px;
padding-left: 15px;
position: relative;
}

p::before {
content: "★";
position: absolute;
left: 0;
color: #444;
}

strong {
color: #000;
}

header a:hover,
header a.active {
    color: var(--main-color);
    --main-color: #0ef;
    background-color: #ffffff;
    font-weight: bold;
}