@font-face {
	font-family: titleFont;
	src: url('fonts/OptimusPrinceps.ttf');
}


body {
	margin: 0;
	background-color: rgb(60, 60, 60);
	background-image: url("soulapproval/pattern.jpg");
	animation: scrollBackground 4s linear infinite;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0px 200px;
  }
}

@keyframes aboutPulse {
  from {
		box-shadow: 0 0 35px rgb(255, 221, 0);
  }
  to {
		box-shadow: 0 0 15px rgba(222, 222, 0, 0.594)
  }
}

@keyframes surveyUpdate {
  from {
		color:rgb(0, 248, 107);
  }
  to {
		color:rgb(0, 190, 133)
  }
}

.title {
	position: relative;
	width: 100%;
	height: 40vh;
	background: url('soulapproval/background.webp') center/cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #00c86e;
   -webkit-text-fill-color: #00000096;
   -webkit-text-stroke: 1px;
	font-size: 5em;
	font-family: titleFont;
	text-shadow: 0 0 50px rgb(0, 255, 153);
}

.about {
	margin-top: 20px;
	padding: 10px;
	background-color: #0f0f0fd8;
	border: 2px solid #FFBC00;
	border-radius: 15px;	
	color: rgb(255, 255, 255);
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	box-shadow: 0 0 25px rgb(0, 149, 255);
	animation: aboutPulse 2s alternate infinite;
}

.about a:link {
	color: #00c86e;
	animation: surveyUpdate 0.5s alternate infinite;
}

.about p {
	font-weight: bold;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}

.zip {
	background-color: #ffffff00;
	border: 2px solid #FFBC00;
	box-shadow: 0 0 10px #FFBC00;
	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 #FFBC00;
}

.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;
}

.images {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.memories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
    max-width: 65%;
}

.screenshots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    max-width: 35%;
}

.memories img, .screenshots img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}