body{
  background-image: url("background.jpg");
  background-size: 500px;
  background-color: violet;
  background-blend-mode: lighten;
  text-align: center;
}

#title{
  
  margin-top: 100px;
  line-height: 10px;
}

#subtitle{
  opacity: 0.7;
  font-size: 18px;
}
#calendarContainer{
  display: flex;
}
#calendardiv{
  background-color: white;
  border-radius: 10px 10px 20px 20px;
  margin: auto;
  align-content: center;
  text-align: center;
  
}
#calendarheading{
  display: flex;
  justify-content: space-between;
  border-radius: 10px 10px 0px 0px;
  border: 2px solid black;
  padding: 0px 20px;
  font-size: 20px;
  background-color: #bc82e8;
  line-height: 0px;
}
#calendarContent{
  padding: 20px;
  border: 2px solid black;
}

.days{
display: flex;
}
.day {
  width: 30px;
  height: 30px;           
  margin: 3px;
  padding: 0;               
  border: 1px solid black;  
  border-radius: 10px 10px 5px 5px;
  display: flex;
  align-items: center;      
  justify-content: center;  
  background-color: mediumpurple 
}








