@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;
  filter: invert(1);
  /* top: 0; */
  /* left: 0; */
  /* object-fit: cover;
  top:0;
  left: 0; */
  /* margin: auto; */
}

h1 {
  font-size: 14rem;
  color: black;
  padding: 10px;
  border-radius: 5px;
  z-index: 1;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
               1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

@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: 8rem;
  }
}

h1, body, figure {
  margin: 0;
}

