@font-face {
    font-family: 'conthrax'; /*a name to be used later*/
    src: url("../font/conthrax.otf"); /*URL to font*/
}

html, main {
    height: 100%;
}

body {
  height: 100%;
  font-family: conthrax;
  color: white;
  margin: auto;
  background-color: black;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container img {
  display: block;
  width: 50%;
  margin: auto;
  filter: invert(1);
}

.center-text {
  text-align: center;
}