* {font-family: pokem;}
@font-face {
  font-family: pokem;
  src: url(PokemonGb-RAeo.ttf);
} 
.td h1 {position: fixed; left: 65px; top: 0;}
.td h1 a {color: white; text-decoration: none;}
.td img {
  width: 40px;
  position: fixed;
  top: 5px;
  left: 15px;
}
.td div {float: right;}
.td {
  background: #3c65c7;
  border-bottom: 3px #da7d2c solid;
  position: fixed;
  width: 100%;
  height: 60px;
}
.dropbtn {
  margin-top: 10px;
  color: white;
  background: none;
  padding: 16px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 10px;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {background-color: #ddd; border-radius: 10px;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #e07c2c}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
}
body {
  height: 100%;
  overflow: hidden;
  background-image: url("/img/mario.gif"), url("/img/ground.png"), url("/img/bushes.png"), url("/img/back.png");
  background-color: #f8e0b0;
  background-repeat: no-repeat, repeat-x, repeat-x, repeat-x;
  background-position: left 30% bottom 22px, left 0 bottom 0, left 0 bottom 22px, left 0 bottom 0;
  animation: back 15s infinite linear; }
@keyframes back {
  0% {
    background-position: left 30% bottom 22px, left 0 bottom 0, left 0 bottom 22px, left 0 bottom 0; }
  50% {
    background-position: left 50% bottom 22px, left -816px bottom 0px, left -508px bottom 22px, left -256px bottom 0px; }
  100% {
    background-position: left 30% bottom 22px, left -1632px bottom 0px, left -1016px bottom 22px, left -512px bottom 0px; } }
::selection{
  color: #fff;
  background: #9b27ca;
}
.wrapper{
  position: absolute;
  max-width: 480px;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 40px 30px;
  background: #fff;
  margin: 0;
  z-index: 6;
  box-sizing: border-box;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.06);
  transition: opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
}
.wrapper.show{
  opacity: 1;
  pointer-events: auto;
  transform:translate(-50%, -50%) scale(1);
}
#back.show{
  opacity: 0.5;
  pointer-events: auto;
}
.wrapper .content,
.content .warn-icon,
.warn-icon .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wrapper .content{
  flex-direction: column;
}
.content .warn-icon{
  height: 115px;
  width: 115px;
  border-radius: 50%;
  background: linear-gradient(#3c65c7 0%, #9927cf 0%, #da7d2c 100%, #e07c2c 100%);
}
.warn-icon .icon{
  height: 100px;
  width: 100px;
  background: #fff;
  border-radius: inherit;
}
.warn-icon .icon i{
  background: linear-gradient(#3c65c7 0%, #9927cf 0%, #da7d2c 100%, #e07c2c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
}
.content h2{
  margin-top: 35px;
  font-size: 32px;
}
.content p{
  font-size: 19px;
  text-align: center;
  margin-top: 20px;
}
.btn{
  height: 57px;
  width: 223px;
  margin-top: 30px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.btn .bg-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(135deg, #3c65c7, #e07c2c, #3c65c7, #e07c2c);
  transition: all 0.4s ease;
}
.btn:hover .bg-layer{
  left: 0;
}
.content button{
  position: relative;
  z-index: 7;
  height: 100%;
  width: 100%;
  background: none;
  font-size: 18px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
}
#back{
  position: absolute;
  z-index: 5;
  opacity: 0;
  height: 100%;
  width: 100%;
  background: lightgrey;
  pointer-events: none;
}
