body {
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 11px;
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  text-align: center;
  transition: background-color 0.3s;
}

#container {
  width: 100%;
}

#question {
  font-size: max(10vmin, 1rem);
  font-weight: 700;
  padding: 0 15%;
}

#reload {
  margin-top: 100px;
  padding: 0.5em 1em;
  border-radius: 5px;
  border: 2px solid #fff;
  line-height: 1;
  font-size: max(4vmin, 1rem);
  font-weight: 300;
  cursor: pointer;
  background: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#reload:hover,
#reload:active {
  opacity: 1;
}

#top-menu {
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 100%;
  display: flex;
  margin-top: 8px;
}

#typewise-logo {
  margin-left: 8px;
  position: absolute;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#typewise-logo:hover,
#typewise-logo:hover #typewise-icon-background,
#typewise-logo:hover #typewise-text {
  opacity: 1;
}

#typewise-icon {
  position: absolute;
  z-index: 2;
  left: 0;
  height: 60px;
  width: 60px;
}

#typewise-icon-background {
  position: absolute;
  height: 42px;
  width: 42px;
  background-color: #03a9f4;
  margin: 9px;
  border-radius: 50%;
  opacity: 0;
}

#typewise-text {
  position: absolute;
  left: 0;
  background-image: url(../imgs/typewise-text.svg);
  background-position: right 60%;
  background-size: 129px 30px;
  background-repeat: no-repeat;
  height: 30px;
  width: 129px;
  margin-left: 60px;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

#share {
  position: absolute;
  right: 0;
  background-image: url(../imgs/share-social-outline.svg);
  background-position: right 50%;
  background-size: 32px;
  background-repeat: no-repeat;
  height: 40px;
  padding: 11px 38px 8px 22px;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  line-height: 40px;
  font-size: 1.1rem;
  margin-right: 20px;
  z-index: 2;
}

body.apple-style #share {
  background-image: url(../imgs/share-outline.svg);
  background-position: right 40%;
}

#share span {
  opacity: 0;
  transition: opacity 0.3s;
}

#share:hover,
#share:hover span {
  opacity: 1;
}

#copy-hint {
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.1rem;
  position: absolute;
  right: 0;
  height: 40px;
  line-height: 40px;
  padding: 11px 38px 8px 22px;
  margin-right: 20px;
  z-index: 1;
}
