body {
  font-family: monospace;
    margin: auto;
    overflow: auto;
    background: linear-gradient(90deg, rgba(121,9,62,1) 0%, rgba(244,43,131,1) 20%, rgba(135,75,198,1) 40%, rgba(45,73,107,1) 60%, rgba(25,93,67,1) 80%, rgba(68,77,35,1) 100%);
    animation: gradient 30s linear infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

h1 {
  margin-top: 0;
  font-size: 4rem;
}

p {
  font-size: 1.5rem;
}

.content {
  max-width: 800px;
  min-width: 500px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  margin: auto;
  margin-top: 2rem;
  text-align: center;
}

@media only screen and (max-width: 720px) {
	h1 {
		font-size: 3rem;
	}
	
	.content {
		min-width: 0;
	}
}

@media only screen and (max-width: 500px) {
	h1 {
		font-size: 2rem;
	}
	
	.content {
		min-width: 0;
	}
}

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