*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

h1{
    text-align: center;
}

.botons{
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.botons p{
    color: black;
    font-size: 25px;
}


#rojo{
    background-color: red;
    padding: 10px;
    border: 2px solid red;
    border-radius: 40px 40px 40px 40px;
    margin-right: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}


#celeste{
    background-color: skyblue;
    padding: 10px;
    border: 2px solid skyblue;
    border-radius: 40px 40px 40px 40px;
    margin-right: 10px;
    margin-top: 0px;
}

#green{
    background-color: green;
    padding: 10px;
    border: 2px solid green;
    border-radius: 40px 40px 40px 40px;
    margin-right: 10px;
    margin-top: 0px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.calendario{
    text-align: center;
    width: 400px;
    background-color: blue;
    padding: 10px;
    border-radius: 20px;
}

h2 {
    text-align: center;
    color: white;
}

h3{
    margin: 10px;
    text-align: left;
    color: white;
}

ol{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0px;
    color: white;
}

.first-day{
    grid-column-start: 3;
}

.feriado{
    background-color: red;
    color: white;
}

.feriado-traladable{
    background-color: green;
    color: white;
}

.day-name{
    background-color: #eee;
    color: black;
    font-weight: bold;
    text-align: center;
}

.day{
    text-align: center;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
}
/* Alineación de los primeros días */
.first-day {
    grid-column-start: var(--first-day);
}




footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}