.yearContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.monthContainer {
  width: 30%;
  margin-bottom: 20px;
}

.monthTable {
  width: 100%;
}

.monthTableHeader {
  text-align: center;
}

.comicThumbnail {
  width: 100%;
}

.comicThumbnailHalf {
  width: 50%;
}

.imgContainer {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.imgContainer.notMobile:hover .comicThumbnail {
  position: absolute;
  padding: 0px 0px 30px;
  width: 384px;
  height: 414px;
  top: -414px;
  left: -168px;
  z-index: 2;
  background-color: #000000b3;
}

.imgCaption {
  display: none;
  position: absolute;
  width: 384px;
  height: 30px;
  top: -30px;
  left: -168px;
  color: white;
  z-index: 3;
  font-weight: bold;
}

.imgContainer:hover .imgCaption {
  display: block;
}

.monthTable td {
  width: 48px;
  height: 48px;
}

#galleryModal {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009e;
  z-index: 9999;
}

#galleryModal.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#closeGalleryButton {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 40px;
  font-weight: bold;
  color: white;
  padding: 0 20px;
  cursor: pointer;
}

.navigationArrow {
  color: white;
  font-size: 80px;
  padding: 20px;
  cursor: pointer;
  z-index: 99991;
}

.unselectable {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}

.navigationArrow.notMobile:hover {
  color: rgb(168, 167, 167);
}

#currentComicImageContainer {
  height: 88%;
  width: 88%;
  position: relative;
}

#currentComic {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  right: 0;
}

#comicCaption {
  position: absolute;
  bottom: -52px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

#spinnerWrapper {
  display: none;
}

#spinnerWrapper.active {
  display: block;
  width: 350px;
  height: 35px;
  position: relative;
  top: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .monthContainer {
    width: 45%;
  }
  #galleryModal {
    background-color: #000000bb;
  }
  #galleryModal.active {
    justify-content: center;
  }
  .navigationArrow {
    position: absolute;
    padding: 5px;
  }
  #leftArrow {
    bottom: -20px;
    left: 20px;
  }
  #rightArrow {
    bottom: -20px;
    right: 20px;
  }
  #currentComicImageContainer {
    height: 85%;
    width: 85%;
  }
}

@media screen and (max-width: 568px) {
  .monthContainer {
    width: 100%;
  }
}