*,
::after,
::before {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: monospace;
  color: #0a0;
}
body {
  min-height: 100vh;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
a,
span {
  text-decoration: none;
  color: #0bc;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a:hover,
span:hover {
  color: #0099a8;
}
nav {
  margin-top: 10vh;
}
nav span {
  color: #0a0;
  font-size: 24px;
}
nav span:nth-of-type(2) {
  margin: 0 1.5rem;
}
nav span:hover {
  color: #0a0;
}
header {
  margin: 1.5rem 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
header span {
  color: #0a0;
  font-size: 30px;
}
h1 {
  padding-right: 0.5rem;
  min-height: 58px;
  font-size: 48px;
}
main {
  width: 632px;
  max-width: 90%;
}
p {
  color: #dedede;
  margin-bottom: 2rem;
  font-size: 18px;
  line-height: 25px;
}
footer {
  margin: auto 0 4rem;
  font-size: 1.25rem;
  color: #0b0;
}
.underline {
  position: relative;
}
.underline::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0a0;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.underline:hover::before {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.cursor {
  -webkit-animation: cursor 1.5s infinite;
  animation: cursor 1.5s infinite;
  color: #0a0;
  display: inline-block;
  width: 10px;
  margin-left: 5px;
  border-radius: 1px;
}
@-webkit-keyframes cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hidden {
  display: none;
}
.wb-title {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
}
.wb-full {
  display: none;
}
.wb-icon * {
  opacity: 0.75;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.wb-icon :hover {
  opacity: 1;
}
.wb-body {
  background: #111;
}
.content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.content:not(.imageContent) {
  padding: 1rem;
}
.imageContent img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#bicycle-content img {
  padding: 1rem;
  margin: -2.5rem 0 -3.5rem;
}
@media (max-width: 425px) {
  nav {
    margin-top: 5vh;
  }
  nav span {
    font-size: 1.5rem;
  }
  nav span:nth-of-type(2) {
    margin: 0 1rem;
  }
  h1 {
    font-size: 2.3rem;
    min-height: unset;
  }
  .wb-icon * {
    opacity: 1;
  }
  .wb-max,
  .wb-min {
    display: none;
  }
}
