/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');

body {
  color: black;
  font-family: 'Arial', sans-serif;
}

.phasmatic {
  background-image: url('./imgs/fond.png');
}

.errorcode {
  color: black;
  font-family: 'Roboto Mono','Arial', sans-serif;
  font-size: 100px;
}

@keyframes animate-bg{
  100% {
    background-position : 64px 64px;
    }
  }

#tt {
  background: url("ph.png") repeat 0 0;
  animation: animate-bg 2.56s infinite linear;
  border: 1px solid;
  border-color:darkgrey;
  color:#333333;
  padding: 0px 20px 20px 20px;
  width: 60%;
  height:auto;
  margin-left: 20%;
  margin-right: 20%;
}
