body {
  background-color: #fff;
  font-family: -apple-system, "Segoe UI", system-ui, Roboto, Ubuntu, 'Helvetica Neue', Oxygen, Cantarell, Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-weight: 400;
}

div.version {
  display: none;
  opacity: 0;
}

section#main {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

div#panel {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

img.bomb,
svg.bomb {
  padding-left: 35px;
  margin-top: 0;
  width: 100px;
  height: 100px;
}

h1 {
  font-weight: 700;
  font-size: 8vw;
  line-height: 1;
  padding-left: 35px;
  margin-top: 70px;
  padding-right: 15px;
  letter-spacing: -1.5px;
}

h1 span {
  color: #fb0448;
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

p#colophon {
  display: block;
  position: fixed;
  left: 35px;
  bottom: 35px;
  color: rgba(11,12,12,1);
  font-size: 16px;
  margin: 0px;
}

p#colophon a {
  display: block;

  position: relative;
  margin-bottom: 5px;
  font-size: 25px;
}

p#colophon span {
  display: inline-block;
  transform: scale(1.5) translateY(-1px);
  animation: blinker 1.2s infinite;
}

@keyframes blinker {
    0% { opacity: 1; }
    49% { opacity: 1 }
    50% { opacity: 0; }
    99% { opacity: 0; }
    100%{ opacity: 1; }
}

a {
  color: rgba(39,39,39,1);
  font-weight: 700;
  padding-bottom: 3px;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a:hover {
  color: #ff4d2a;
  text-decoration: none;
}

@media (max-width: 600px){
  h1 {
    font-weight: 700;
    font-size: 12vw;
    line-height: 1;
    padding-left: 30px;
    margin-top: 50px;
  }
  img.bomb {
    padding-left: 30px;
  }
  p#colophon {
    font-size: 16px;
    left: 25px;
  }
}

@media (max-height: 567px){
  h1 {
    font-weight: 700;
    font-size: 9vw;
    line-height: 1;
    padding-left: 30px;
    margin-top: 30px;
  }
  img.bomb {
    margin-top: 50px;
    padding-left: 25px;
    height: 50px;
    width: 50px;
  }
  p#colophon {
    font-size: 16px;
    left: 25px;
  }
}