@font-face {
	font-family: titleFont;
	src: url('fonts/Optimus.otf');
}


body {
	margin: 0;
	background-color: rgb(60, 60, 60);
	background-image: url("fractalfactory/pattern.jpg");
	animation: scrollBackground 4s linear infinite;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100px;
  }
}

@keyframes changelogPulse {
  from {
		box-shadow: 0 0 35px rgb(255, 140, 0);
  }
  to {
		box-shadow: 0 0 15px rgba(255, 136, 0, 0.594)
  }
}

@keyframes surveyUpdate {
  from {
		color:rgb(0, 117, 201);
  }
  to {
		color:rgb(96, 189, 255)
  }
}

.title {
	position: relative;
	width: 100%;
	height: 40vh;
	background: url("fractalfactory/background.webp") center/cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ff6a00;
  -webkit-text-fill-color: #00000096;
  -webkit-text-stroke: 3px;
	font-size: 5em;
	font-family: titleFont;
	text-shadow: 0 0 50px rgb(255, 106, 0);
}

.changelog {
	margin-top: 20px;
	padding: 10px;
	background-color: #101010db;
	border: 2px solid #ff7300;
	border-radius: 15px;	
	color: rgb(255, 255, 255);
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	box-shadow: 0 0 25px rgb(255, 170, 0);
	animation: changelogPulse 2s alternate infinite;
}

.changelog survey {
	color: #0088ff;
	animation: surveyUpdate 0.5s alternate infinite;
}

.changelog p {
	font-weight: bold;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.zip {
	background-color: #ffffff00;
	border: 2px solid #ff6a00;
	box-shadow: 0 0 10px #ff6a00;
	padding: 20px 50px;
	font-size: 1.2em;
	border-radius: 10px;
	text-align: center;
  transition: 0.5s;
}

.zip a {
  text-decoration: none;
  color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
	font-size: 1.25em;
	transition: 0.3s;
}

.zip:hover {
	background-color: #1f1f1f;
	box-shadow: 0 0 20px #ff6a00;
}

.zip:hover a {
	color: rgb(238, 238, 238);
	text-shadow: 0 0 10px rgb(255, 255, 255);
}

.notice {
	font-size: 0.5em;
	text-align: center;
}

