@font-face {
  font-family: "Mohr";
  src: url("./fonts/MohrAlt-Regular.woff2") format("woff2"),
    url("./fonts/MohrAlt-Regular.woff") format("woff");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mohr", sans-serif;
  position: relative;
  cursor: default;
  background: #333;
}

.main {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #33333396, #111111),
    url("./assets/2.jpg");
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.main .img {
  position: relative;
  width: 20em;
  height: auto;
}

.main .img img {
  width: 100%;
  height: auto;
  display: block;
}

.main h1 {
  position: relative;
  color: #fff;
  font-size: 1.2em;
  margin-top: 1em;
  text-align: center;
  font-weight: 400;
}
