
@font-face {
  font-family: 'Ortica';
  src: url('../fonts/Ortica-Light.otf');
  font-style: normal;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background-image: url("images/attica.png");
  background-size: cover;
  background-attachment: fixed;
  background-color: red;
}

* {
  margin: 0;
  padding: 0;
}

.slogan {
  font-family: 'Ortica';
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
  color: white;
  font-size: 18vw;
  padding: 10px;
  text-align: center;
  line-height: 80%;
  position: relative;
  z-index: 10000;
  height: 100%;
  line-height: 80%;
}

span {
  height: 100px;
  width: 100px;
  border-radius: 200px;
  position: absolute;
  pointer-events: none;
  background: red;
  transform: translate(-50%, -50%);
  animation: blow 1000s linear infinite;
  display: block;
}

@keyframes blow {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -1000%);
  }
}
