body
{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url(images/bg.jpg);
  background-size: cover;
  font-family: 'Poppins', sans-serif;
}

.calendar
{
  width: 300px;
  height: auto;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 5px 50px rgba(0,0,0,.5);
}

.calendar .date
{
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25px,1fr));
  gap: 10px;
  box-sizing: border-box;
}

.calendar .date div
{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  color: #262626;
}

.calendar .date div.day
{
  font-weight: 700;
}

.calendar .date div.day:nth-child(7n-1),
.calendar .date div.number:nth-child(7n-1)
{
  color: #ff685d;
  font-weight: 700;
}

.calendar .date div.number.active,
.calendar .date div.number:hover,
.calendar .date div.day:hover
{
  background: #009688;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.calendar .image
{
  width: 100%;
  height: 200px;
  background: url(images/yellow_field.jpg);
  background-size: cover;
  padding: 20px;
  box-sizing: border-box;
}

.calendar .image h2,
.calendar .image h3,
.calendar .image h6
{
  margin: 0;
  padding: 0;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

.calendar .image h3
{
  font-weight:500;
}

.calendar .image h6
{
  font-weight: 400;
  padding-top: 95px;
  padding-left: 120px;

}
