@font-face {
    font-family: font1;
    src: url(28DaysLater.ttf);
}

body {
  background-color: #020202;
  margin: 0;
}

.terms {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.terms a {
  color: white;
}
.copyright {
  position: absolute;
  left: 15px;
  top: -30px;
  color: white;
  font-style: italic;
  font-size: 14px;
}

main {
  display: block;
  position: absolute;
  top: 50px;
  left: 0px;
  z-index: 100;
  width: 100%;
  text-align: center;
}


.title {
  position: relative;
  display: inline-block;
  font-family: font1;
  font-size: 110px;
  color: white;
}
.version {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
}

#inp {
  height: 25px;
  width: 300px;
  font-size: 16px;
  box-sizing: border-box;
}

#say {
  height: 25px;
  font-family: font1;
  box-sizing: border-box;
  padding-bottom: 4px;
}

#answer {
  margin-top: 35px;
  font-size: 20px;
  width: 500px;
  color: white;
  left: calc(50% - 250px);
  position: absolute;
}

.image {
  width: 100%;
}

@media screen and (max-width: 480px) {
    body {
      margin-top: 30px;
    }
    .title {
      font-size: 85px;
    }
    #inp{
      width: 220px;
    }
    #answer {
      width: 300px;
      left: calc(50% - 150px);
    }
}
