@font-face {
  font-family: 'MyFont';
  src: url("font.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
  
body {
  background-color: #696eff;
  background-image: linear-gradient(180deg, #696eff 0%, #f8acff 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

  height: 100%;
  width: 100%;
}

h1 {
  font-size: 10em;
  font-family: MyFont;
  text-align: center;
}

.centered-element {
  margin: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
  font-size: 0.8em;
}
