@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
.tl-wrapper {
  width: 100%;
  height: 20%;
}

#line {
  height: 6px;
  width: 90%;
  background: #2B2118;
  border-radius: 5px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}

#span {
  display: none;
  width: 90%;
  margin: auto;
  margin-top: 25%;
  text-align: center;
  color: #2B2118;
}

.circle {
  width: 20px;
  height: 20px;
  background: #F4EBD9;
  border-radius: 15px;
  position: absolute;
  top: -7px;
  border: 3px solid #2B2118;
  cursor: pointer;
}
.circle:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2B2118;
  position: absolute;
  border-radius: 100%;
  top: 2px;
  left: 2px;
  display: none;
}
.circle .popupSpan {
  width: auto;
  height: auto;
  padding: 10px;
  white-space: nowrap;
  font-weight: 600;
  color: #2B2118;
  position: absolute;
  top: 20px;
  left: -22px;
  display: none;
  transition: all 0.1s ease-out;
}
.circle.hover:before, .circle.active:before {
  display: block;
}
.circle.hover .popupSpan, .circle.active .popupSpan {
  display: block;
}
.circle.active .popupSpan {
  top: -40px;
}

#tl-comment {
  height: 50px;
  width: 100%;
  position: relative;
  color: #2B2118;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease-out;
  margin-top: 20px;
}
#tl-comment span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 30%;
  transition: all 0.2s ease-out;
}
#tl-comment span.right {
  left: 200%;
}
#tl-comment span.center {
  left: 0% !important;
}
#tl-comment span.left {
  left: -100%;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  background: #F4EBD9;
  overflow: hidden;
}
html.frozen, body.frozen {
  pointer-events: none;
}

header {
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
header h1 {
  font-weight: 400;
  color: #333;
}

#timeline {
  height: 100px;
}

main {
  height: calc(100% - 180px);
  overflow-y: auto;
}
main #gallery {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
main #gallery img {
  margin: 5px;
  border: solid 2px #2B2118;
  padding: 5px;
  border-radius: 3px;
  background-color: rgba(72, 61, 63, 0.5333333333);
  cursor: pointer;
}
main #gallery img:hover {
  opacity: 0.5;
  background-color: white;
}

#enlarge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96%;
  height: 96%;
  z-index: 1;
  position: fixed;
  top: 2%;
  left: 2%;
  background-color: rgba(244, 235, 217, 0.7333333333);
}
#enlarge.hidden {
  display: none;
}
#enlarge img {
  cursor: pointer;
}
#enlarge img.landscape {
  width: 100%;
  height: auto;
  max-height: 100%;
}
#enlarge img.portrait {
  width: auto;
  max-width: 100%;
  height: 100%;
}

body.frozen > #enlarge {
  pointer-events: auto;
}/*# sourceMappingURL=style.css.map */