@font-face {
  font-family: 'MyFont';
  src: url('elatina.otf') format('opentype');
  font-weight: bold;
  font-style:normal;
}

html, body {
  font-family: 'MyFont';
  background-color: black;
  /* margin: 0; */
  /* padding: 0; */
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

img {
  max-width: 100%;
  /* max-height: 100%; */
  display: block;
  position:absolute;
  /* top: 0; */
  /* left: 0; */
  /* object-fit: cover;
  top:0;
  left: 0; */
  margin: auto;
}

h1 {
  font-size: 10rem;
  color: white;
  padding: 10px;
  border-radius: 5px;
  z-index: 1;
}

@media(max-width: 768px) {
  img {
    max-width: none;
    max-height: 100%;
    height: 100%;
    width: auto;
    object-fit: cover;
  }

  h1 {
    font-size: 8rem;
  }
}

@media(min-width: 769px) and (max-width: 1024px) and (min-height: 530px) {
  img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    width: auto;
    object-fit: cover;
  }
  h1 {
    font-size: 10rem;
  }
}

h1, body, figure {
  margin: 0;
}

