/* basic style */
html,
body {
  margin: 0;
  padding: 0;
  width:100%;
  height: 100%;
  overflow: hidden;
}
a{
  text-decoration: none;
  color: black;
}



.title{
  height: 32px;
  width: 100%;
  font-size: 22px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
}
.title a{
  display: inline-block;
  color: white;
  width: 200px;
  height: 32px;
  background-color: black;
}




.nav{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav .wrap{
  width: 200px;
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.nav .wrap a{
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: #555;
  border-bottom: 1px solid white;
}
.nav .wrap a:hover{
  color: black;
  border-bottom: 1px solid black;
}


.grid{
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid .wrap{
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.grid .wrap .dec,
.grid .wrap .nov,
.grid .wrap .oct,
.grid .wrap .sep,
.grid .wrap .aug,
.grid .wrap .jul,
.grid .wrap .jun,
.grid .wrap .may,
.grid .wrap .apr,
.grid .wrap .mar,
.grid .wrap .feb,
.grid .wrap .jan{
  display: inline-block;
  width: 88px;
  height: 75px;
  margin: 0 10px 20px 0;
}
.grid .wrap span{
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: rgb(235, 237, 240);
  margin: 0 3px 5px 0;
}

.grid .jan span:nth-child(8){
  background-color: rgb(25, 97, 39);
}
.grid .jan span:nth-child(9){
  background-color: #7bc96f;
}
.grid .jan span:nth-child(12){
  background-color: #c6e48b;
}
.grid .jan span:nth-child(13){
  background-color: #c6e48b;
}
.grid .jan span:nth-child(17){
  background-color: #c6e48b;
}
.grid .jan span:nth-child(20){
  background-color: #c6e48b;
}
.grid .jan span:nth-child(23){
  background-color: #c6e48b;
}
.grid .jan span:nth-child(29){
  background-color: #c6e48b;
}





.info{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.info a{
  display: inline-block;
  margin: 0 10px;
  color: #555;
}
.info a:hover{
  color: black;
}