h1.colourful-text {
	font-family: "Courier New", Courier, monospace;
	font-weight: 900;
	font-size: 2.5rem;
	line-height: 1.2;
	text-align: center;
	padding: 0.3rem 0 0 0;
	margin: 0;
}

h1.colourful-text:hover {
	color: var(--blueTitle);
}

@media (max-width: 700px) {
	h1.colourful-text {
		font-size: 1.8rem !important
	}
}

@media (max-width: 550px) {
	h1.colourful-text {
		font-size: 1.3rem !important;
		padding-left: 2rem !important;
	}
}

/* Keyframes for colour change */
@keyframes colorChange {
	0% {
		color: var(--white);
	}

	49% {
		color: var(--white);
	}

	50% {
		color: var(--blueTitle);
	}

	100% {
		color: var(--blueTitle);
	}
}

/* Apply to each span within the h1 */
.colourful-text span {
	display: inline-block;
	animation: colorChange 10s infinite;
}

/* Offset each letter's animation by a small amount */
.colourful-text span:nth-child(1) {
	animation-delay: 0s;
}

.colourful-text span:nth-child(2) {
	animation-delay: 0.1s;
}

.colourful-text span:nth-child(3) {
	animation-delay: 0.2s;
}

.colourful-text span:nth-child(4) {
	animation-delay: 0.3s;
}

.colourful-text span:nth-child(5) {
	animation-delay: 0.4s;
}

.colourful-text span:nth-child(6) {
	animation-delay: 0.5s;
}

.colourful-text span:nth-child(7) {
	animation-delay: 0.6s;
}

.colourful-text span:nth-child(8) {
	animation-delay: 0.7s;
}

.colourful-text span:nth-child(9) {
	animation-delay: 0.8s;
}

.colourful-text span:nth-child(10) {
	animation-delay: 0.9s;
}

.colourful-text span:nth-child(11) {
	animation-delay: 1.0s;
}

.colourful-text span:nth-child(12) {
	animation-delay: 1.1s;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	z-index: 1000;
	text-align: center;
	padding-bottom: 0.25em;
}

@media (max-width: 550px) {
	.header {
		justify-content: normal;
	}
}

/* Hamburger Menu */
.hamburgerMenu {
	position: fixed;
	top: 18px;
	right: 20px;
	width: 30px;
	height: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	z-index: 1010;
}

.hamburgerMenu span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--blueTitle);
	transition: all 0.3s ease;
}

.menuContent {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: var(--blue);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index:2;
}

.menuContent ul {
	list-style: none;
	padding: 20px;
}

.menuContent ul li {
	margin-bottom: 20px;
}

.menuContent ul li a {
	text-decoration: none;
	font-size: 1.2rem;
	color: #fff;
}

/* Show the menu when active */
.menuContent.active {
	transform: translateX(0);
}

/* Hamburger Menu Animation when Active */
.hamburgerMenu.active span:nth-child(1) {
	transform: rotate(45deg) translate(9px, 8px);
}

.hamburgerMenu.active span:nth-child(2) {
	opacity: 0;
}

.hamburgerMenu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.menu-centre {
	display: flex;
	height: 100vh;
}

.menu-list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}