.line-through {
  text-decoration: line-through
}

#typed {
  white-space:pre; 
}

.text {
  font-family: 'Rubik', sans-serif; 
  font-size: 50px; 
  font-weight: 300; 
  color: white;
  padding: 200px
}

.bold {
  font-weight: 400
}

@media  (max-width: 1000px) {
  .text {
    padding: 20px;
    font-size: 15px;
    font-weight: 700;
  }
}

/* From https://codepen.io/P1N2O/pen/pyBNzX */

body {
	margin: 0;
	width: 100%;
	height: 100vh;
	color: #fff;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  box-sizing: border-box
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.container {
	width: 100%;
	position: absolute;
}



