body {
	background-color: #333333;
	background-image: url("/images/border.png");
	background-repeat: repeat-x;
	margin: 0 0 0 0;
}
.titleText {
	font-size: clamp(48px, 8vw, 72px);
	-webkit-text-fill-color: #FF5599;
	-webkit-text-stroke: 3px #FFFFFF;
	font-family: "Comic Sans MS";
	font-weight: bold;
	text-align: center;
	margin: 0 0 0 0;
	padding-bottom: 8px;
}
h1 {
	font-size: 48px;
	color: white;
	font-weight: bold;
}

p {
	font-family: Comic Sans MS;
    font-size: 24px;
    color: white;
}
a {
	font-family: Comic Sans MS;
}

button {
  align-items: center;
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-size: 18px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}

button:active,
button:hover {
  outline: 0;
}

button span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

button:hover span {
  background: none;
}

button:active {
  transform: scale(0.9);
}

.mainContainer {
	padding: 16px 16px 16px 16px;
}
