* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* making the website into each box*/
  font-family: "Montserrat", sans-serif;
  list-style-type: none;
}

body,
html {
  height: 100vh;
}

body {
  background: url("Watercolor.jpg");
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  width: 45rem;
  height: 32rem;
  background-color: #bfd3ea;
  /*#bfd3ea;*/
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0, 5);
  background: inherit;
  border-radius: 15px;
  border: 1px none rgba(43, 43, 43, 0.568);
  position: absolute;
}

/*Creating glass effect by using pseudoclass.
For pseudoclass to work we need to give it a content property, 
however here we leave it empty*/
.container::before {
  position: absolute;
  content: "";
  background: inherit;
  left: 0;
  right: 0;
  top: -2.5rem;
  bottom: 0;
  box-shadow: inset 0 0 0 3000px rgba(150, 150, 150, 0.192);
  border-radius: 15px;
  filter: blur(15px);
}
/*If adding content within our container wrapper, it goes behind the pseudo element 
and cannot be seen on top. To solve this, a new div wrapper is created and set the 
content div to absolute*/
.calendarContent {
  position: absolute;
}
.month {
  width: 100%;
  height: 5rem;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #031a31;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}

.month h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
i {
  color: #bfd3ea;
  font-size: 3rem;
  cursor: pointer;
}

/*NEEDFIX*/
i:hover {
  font-size: 3.5rem;
  text-shadow: 0 0.3rem 0.5rem #8bb3c9;
}

p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
  text-align: center;
}

hr {
  color: #e1ebf5 5rem;
  opacity: 0.2;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.weekdays li {
  width: 13.7%;
  font-size: 2rem;
  font-weight: 350;
  display: inline-block;
  text-align: center;
  padding: 1rem;
  color: #031a31;
  text-shadow: 0 0.5rem 0.9rem rgba(0, 0, 0, 0.5);
}

.days {
  font-weight: 100;
  display: flex;
  flex-wrap: wrap;
  color: #031a31;
}

.days div {
  font-size: 1.2rem;
  margin: 0.12rem;
  height: 3.3rem;
  width: 13.7%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.days div:hover:not(.present-day) {
  background-color: snow;
  border: 0.1rem #d5dff3;
  color: black;
}

.prev-date,
.next-date {
  opacity: 0.5;
}

.present-day {
  background-color: #ed3948;
  color: white;
}
