.day { 
    background-color: transparent;
    width: 100px;
    height: 100px;
    margin: auto;
    font-size: 15px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cell {
    background-color: #FFFFFF;
    border: 2px dashed black;
}
.header {
    width: 515px;
    background-color: #0A9331;
    font-family: Western, fantasy;
    font-size: 25px;
    padding: 20px;
    color: #FFFFFF;
    height: 150px;
}
.status {
    background-color: #FFBF00;
    vertical-align: top;
    text-align: left;
    padding: 10px;
    font-family: Western, fantasy;
}
.container {
    padding-top: 20px;
    width: 100%;
    height: 100%;
    background: url(../img/xmas.jpg);
    background-repeat: repeat;    
}
.scrollable {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}
.calendar {
    width: 75%;
    margin: auto;
    border-collapse: collapse;
    border: 5px solid black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 8px 25px 0 rgba(0, 0, 0, 0.40);
}
.opened {
    background-color: #E3D11B;
}
.unlocked:hover {
    background-color: #E3D11B;
}
.unlocked:active {
    background-color: #D3C003;
}
.header-img {
    float: right;
    height: 150px;
}
.title {
    font-weight: bold;
    font-size: 45;
    font-family: Arial, Helvetica
}
.button {
  display: inline-block;
  padding: 15px 25px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #FFF;
  background-color: #D83A21;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
  width: 75px;
  height: 60px;
}
.button:hover { 
    background-color: #AE1C05
}
.button:active {
  background-color: #AE1C05;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
@viewport {
  width: device-width;
  zoom: 1.0;
}
