html, body {
  background: #1a1a1b;
  height: 100%;
  margin: 0;
  padding: 0;
}

h1{
  font-size: 14rems;
}

.imageContainer {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  max-height: 1200px;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.degrade{
  background: linear-gradient(-45deg, red, orange, yellow, cyan, violet, pink);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

.imageContainer > img {
  display: block;
  max-width:100%;
  max-height:100%;
  cursor: move;
  touch-action: none;
}

