@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Roboto";
  background-image: url("../images/background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: black;
  background-attachment: fixed;
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

h1 {
  color: rgb(255, 255, 255);
  font-size: 3em;
  text-align: center;
  margin-bottom: 0px;
}

h2 {
  color: rgb(190, 190, 190);
  font-size: 1em;
  font-weight: 200;
  text-align: center;
}

h3 {
  color: rgb(182, 180, 180);
  margin-top: 40px;
  font-size: 0.8em;
  padding: 5px 10px 5px 10px;
  background-color: rgba(36, 36, 36, 0.7);
  border-radius: 2px;
}

p {
  font-size: 0.7em;
  color: rgb(108, 108, 108);
  background-color: rgba(34, 34, 34, 0.7);
  margin-top: 20px;
  padding: 5px 10px 5px 10px;
  border-radius: 2px;

  line-height: 1.4em;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

img {
  margin-top: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 50%;
  box-shadow: 5px 5px 20px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 2.5em;
  }
  img {
    margin-top: 30px;
  }
  p {
    font-size: 0.8em;
    text-align: center;
    right: auto;
  }
}
