@font-face {
  font-family: "Roboto Mono";
  src: url("../font/RobotoMono-Regular.woff");
  font-weight: 100;
}

#content {
  display: none;
}
body.loaded #content {
  display: block;
}

body {
  background-image: url("../../lib/images/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  margin: 0;
}

.wrapper {
  height: 100vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.princes {
  width: 19ch;
  animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.footer {
  position: sticky;
  text-align: center;
  text-align: center;
  width: 100%;
  background-color: black;
  color: white;
}

.footer-r {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
}

.footer-r a {
  text-decoration: none;
  color: red;
}

.footer-text a {
  font-weight: 700;
}

.fa {
  padding: 5px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  color: white;
  transition: 0.2s ease;
}

.fa:hover {
  opacity: 70%;
  color: rgb(255, 0, 0);
}
