body {
    background-color: rgba(40, 1, 57, 0);
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    padding-top: 20px; 
    color: rgba(255, 255, 255, 0.849);
}

.calendar-container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(40, 1, 57, 0);
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .day-box {
    background-color: #252B64;
    border-radius: 10px;
    padding: 10px;
    color: #FFF;
    position: relative;
    text-align: center;
  }
  
  .date {
    background-color: #1F40FF;
    border-radius: 10px;
    padding: 5px;
    font-weight: bold;
    color: #FFF;
  }
  
  .event img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
  }
  
  .event p {
    margin: 10px 0 0 0;
    font-size: 14px;
  }
  
  .day-box:nth-child(odd) .date {
    background-color: #FFA500;
  }
  
  .containercalendario {
    display: flex;
    align-items: center;
    font-size: 24px;
  }
  
  .text {
    margin-left: 20px;
  }