* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Diploma"; /*a name to be used later*/
  src: url("../fonts/Diploma.ttf"); /*URL to font*/
}
.container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background-image: url("../assets/background.png");
  background-position: center;
  background-size: cover;
}
.container h1 {
  font-family: "Diploma";
  color: transparent;
  font-size: 9rem;
  letter-spacing: 3%;
  -webkit-text-stroke: 1px #9D9D9D;
}
.container .contacts {
  background-color: rgba(0, 0, 0, 0.35);
  margin: 0;
  padding: 45px 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: white;
}
.container .contacts p {
  font-size: 18px;
  line-height: 150%;
  font-family: "DM Mono", serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 1024px) {
  .container h1 {
    font-size: 5.5rem;
  }
  .container .contacts p {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .container h1 {
    font-size: 2.15rem;
  }
  .container .contacts {
    width: 100%;
    padding: 50px 0 50px 36px;
  }
  .container .contacts p {
    padding-left: 30px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */