body {
  background-color: #232634;
  font-family: Ubuntu, "times new roman", times, roman, serif;
  margin: 0px;
}

 /* Text formatting */  

h1 {
    color: rgb(255, 255, 255);
    text-align: center;
}

.line {
    background-color:#e78284;
    animation: gradient 10s ease infinite;
    height: 6%;
    width: 100%;
    position: fixed;
    top: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;               /* Use Flexbox */
    justify-content: center;     /* Center horizontally */
    align-items: center;
}

@keyframes gradient {
	0% {
		background-color:#e78284;
	}
	12.5% {
		background-color:#ef9f76;
	}
	25% {
		background-color:#e5c890;
	}
    37.5% {
		background-color:#a6d189;
	}
    50% {
		background-color:#99d1db;
	}
    62.5% {
		background-color:#8caaee;
	}
    75% {
		background-color:#f4b8e4;
	}
    87.5% {
		background-color:#ca9ee6;
	}
}