* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
  }
  
  
  
  .container2 {
    /* width: 100%; */
    height: 100vh;
   gap: 50px;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .calendar {
    width: 100%;
    height: 52rem;
    /* background-color: #222227; */
    /* box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4); */
  }
  
  .month {
    width: 100%;
    height: 5rem;
    /* background-color: #360e9c; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  }
  
  .month i {
    font-size: 2.5rem;
    cursor: pointer;
  }
  
  .month h1 {
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
  }
  
  .month p {
    font-size: 1.6rem;
  }
  
  .weekdays {
    width: 100%;
    height: 5rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
  }
  
  .weekdays div {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    width: calc(44.2rem / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  }
  
  .days {
    width: 728px;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem;
    margin: auto;
  }

  
  .days div {
    border: solid 1px white;
    font-size: 2rem;
    margin: 0.3rem;
    border-radius: 8px;
    /* padding: 3rem; */
    width: calc(40.2rem / 7);
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s;
  }
  
  .days div:hover:not(.today) {
    background-color: #262626;
    border: 0.2rem solid #777;
    cursor: pointer;
  }
  
  .prev-date,
  .next-date {
    opacity: 0.5;
  }
  
  .today {
    background-color: #167e56;
  }

.divTitle{
  margin-top: 60px;
}
  .divTitle p{
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    color: white;
  }

  .date h1{
    font-size: 34px;
  }


  @media screen and (max-width: 767px) {
    .days div {
     
      width: calc(40.2rem / 8);
      height: 4rem;
     
    }

    .days {
      width: 728px;
      display: flex;
      flex-wrap: wrap;
      padding: 0.2rem;
      margin: auto;
    }
    
  }

  
@media screen and (max-width: 780px) {
  .days {
    width: 100%;
   
    
  }
}

@media screen and (max-width: 687px) {
  .days div {
   
    width: calc(40.2rem / 9);
    height: 4rem;
   
  }
}

@media screen and (max-width: 625px) {
  .days div {
   
    width: calc(40.2rem / 10);
    height: 4rem;
   
  }
}

@media screen and (max-width: 573px) {
  .days div {
   
    width: calc(40.2rem / 11);
    height: 4rem;
   
  }
}

@media screen and (max-width: 532px) {
  .days div {
   
    width: calc(40.2rem / 12);
    height: 3rem;
   
  }
}


@media screen and (max-width: 500px) {
  .days div {
   
    width: calc(40.2rem / 13);
    height: 3rem;
   
  }
}

@media screen and (max-width: 470px) {
  .days div {
   
    width: calc(40.2rem / 14);
    height: 3rem;
   
  }
}

@media screen and (max-width: 445px) {
  .days div {
   
    width: calc(40.2rem / 15);
    height: 3rem;
   
  }
}

@media screen and (max-width: 422px) {
  .days div {
   
    width: calc(40.2rem / 16);
    height: 2.3rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 404px) {
  .days div {
   
    width: calc(40.2rem / 17);
    height: 2.3rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 387px) {
  .days div {
   
    width: calc(40.2rem / 18);
    height: 2.3rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 387px) {
  .days div {
   
    width: calc(40.2rem / 20);
    height: 2.3rem;
    font-size: 1rem;
  }

  .month i{
    font-size: 24px;
  }
  .divTitle p{
    font-weight: 700;
    text-align: center;
    font-size: 25px;
    color: white;
  }
}

@media screen and (max-width: 280px) {
  .days div {
   
    width: calc(40.2rem / 30);
    height: 2rem;
    font-size: 1rem;
  }

  .date h1{
    font-size: 24px;
  }

  .month i{
    font-size: 24px;
  }

}

