/* 1. Zera margens e faz html/body ocuparem 100% da tela */
html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Syne', sans-serif;
  display: flex;
  align-items: center;      /* vertical */
  justify-content: left;  /* horizontal */
   background-color: #000;
  background-image: url('glitch.gif');
  background-repeat: no-repeat;
  background-position: center center;
}

.centralizado {
  text-align: left;
  color: #fff;
  width: 100%;
}

.centralizado h1 {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 2%;
}

.contato {
  text-align: right;
  position: absolute;
  right: 0;
  color: #fff;
  margin-top: 200px;
  margin-right: 2%;
}

.contato a {
  color: #fff;
  text-decoration: none;
}
