﻿body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  background: url("img/11nov/dsc02673.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: inherit;
  filter: blur(10px);
}

.calendar {
  position: relative;
  min-width: 500px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.calendar__picture {
  position: relative;
  height: 280px;
  padding: 20px;
  color: #fff;
  background: url("img/11nov/dsc02673.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;

}
.calendar__picture::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1));
}
.calendar__picture h2 {
  margin: 0;
  color: #f5ffd3;
  text-shadow: 2px 2px 5px #adffbe;
   text-align: right;
}
.calendar__picture h3 {
  margin: 0;
  font-weight: 500;
   color: #fff;
  text-align: right;
}

.calendar__picture h6 {
  margin: 0;
  font-weight: 500;
  color: #fff;
  text-align: right;
}
.calendar__date {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 15px;
  box-sizing: border-box;
}

.calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  font-weight: 600;
  color: #ff685d;
}
.calendar__day:nth-child(1) {
  color: #ff685d;
}

.calendar__number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  color: #262626;
}
.calendar__number:nth-child(1n) {
  color: #262626;
  font-weight: 700;
}
.calendar__number--current, .calendar__number:hover {
  background-color: #009688;
  color: #fff !important;
  font-weight: 700;
  cursor: pointer;
}

a {
  color:inherit;
  text-decoration: none;
 }

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}