@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
:root {
    --primary-color: #b84aa4;
    --text-color: #1d1d1d;
    --bg-color: #fbf1fb;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    background-color: #fff;
  }
  
  .container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .calendar {
    width: 100%;
    max-width: 60rem;
    padding: 3rem 2rem;
    border-radius: 1rem;
    background-color: var(--bg-color);
  }
  
  .calendar .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid #7e1d52;
  }
  
  .calendar .header .month {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
  }
  
  .calendar .header .btns {
    display: flex;
    gap: 1rem;
  }
  
  .calendar .header .btns .btn {
    width: 5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .calendar .header .btns .btn:hover {
    background-color: #3a0a36;
    transform: scale(1.05);
  }
  
  .weekdays {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .weekdays .day {
    width: calc(100% / 7 - 1rem);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
  }
  
  .days {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .days .day {
    width: calc(100% / 7 - 1rem);
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-color);
    background-color: #fff;
    transition: all 0.3s;
  }
  
  .days .day:not(.next):not(.prev):hover {
    color: #fff;
    background-color: var(--primary-color);
    transform: scale(1.05);
  }
  
  .days .day.today {
    color: #fff;
    background-color: var(--primary-color);
  }
  
  .days .day.next,
  .days .day.prev {
    color: #ccc;
  }
  