h2 {
  text-align: center;
}

h3 {
  text-align: center;
}

h1 {
  font-family: arial;
  color: White;
  font-weight: 900;
  font-size: 5em;
  text-align: center;
}

#header {
  position: absolute;
  top: 250px;
  left: 0px;
  right: 40px;
  height: 0px;
  width: 300px;
  margin: auto;
}

body {
  font-family: Comic Sans MS;
  background: #ED1A23;
  color: white;


}

.checkcaption {
  text-align: center;
  margin-top: 10px;
}

.check {
  width: 60px;
  height: 30px;
  border: #222 solid 2px;
  position: relative;
  margin: 10px auto;
  border-radius: 15px;
}
.check input {
  visibility: hidden;
  height: 0px;
  width: 60px;
}
.check label {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e74c3c;
  cursor: pointer;
  position: absolute;
  top: 18%;
  left: 12%;
  transition: all .3s ease;
}
.check input:checked + label {
  left: 55%;
  background-color: #7b3;
}

div#timeline {
  background-color: black;
  margin-top: 150px;
  height: 10px;
  width: 100%;
  position: relative;
}
div#timeline .inside {
  position: absolute;
  height: 4px;
  background-color: #fff;
  width: 0%;
  top: 3px;
  left: 0;
}
div#timeline .dot {
  z-index: 99;
  transition: 0.3s ease-in-out;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  text-align: center;
  cursor: pointer;
}
div#timeline .dot:nth-child(1) {
  left: 2%;
  background-color: #2c3e50;
}
div#timeline .dot:nth-child(2) {
  left: 13%;
  background-color: #e74c3c;
}
div#timeline .dot:nth-child(3) {
  left: 24%;
  background-color: #7b3;
}
div#timeline .dot:nth-child(4) {
  left: 34%;
  background-color: #20638f;
}
div#timeline .dot:nth-child(5) {
  left: 44%;
  background-color: #9900cc;
}
div#timeline .dot:nth-child(6) {
  left: 54%;
  background-color: black;
}
div#timeline .dot:nth-child(7) {
  left: 64%;
  background-color: #0033cc;
}
div#timeline .dot:nth-child(8) {
  left: 74%;
  background-color: #e6e600;
}
div#timeline .dot:nth-child(9) {
  left: 84.5%;
  background-color: #990000;
}
div#timeline .dot:nth-child(10) {
  left: 95%;
  background-color: #666699;
}
div#timeline .dot:hover {
  transform: scale(1.2);
}
div#timeline .dot date {
  font-family: Comic Sans MS;
  font-size: 1.1rem;
  display: block;
  position: relative;
  top: -60px;
  text-align: center;
}
div#timeline .dot span {
  display: inline-block;
  margin-top: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

article {
  text-align: center;
  display: none;
  position: relative;
  top: 30px;
  max-width: 960px;
  background-color: #fff;
  padding: 20px;
  margin: auto;
}
article date {
  display: block;
  text-align: center;
}
article h2 {
  font-family: Comic Sans MS;
  font-size: 5rem;
  padding: 10px 0;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
  border-bottom: solid #111 2px;
  margin-bottom: 20px;
}
article p {
  text-align: left;
  font-size: 20px;
  line-height: 130%;

}

div.mask {
  display: none;
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}
div.mask article {
  position: relative;
  top: -100%;
  margin-top: 50px;
  max-width: 960px;
  background-color: #ED1A23;
  padding: 20px;
  margin: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}
div.mask article date {
  display: block;
  text-align: right;
}
div.mask article h2 {
  font-family: Comic Sans MS;
  font-size: 5rem;
  padding: 10px 0;
  border-bottom: solid #111 2px;
  margin-bottom: 20px;
}
div.mask article p {
  line-height: 130%;
}
