@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*{
	margin: 0;
	padding: 0;
	font-family: 'Quicksand', sans-serif;
}
body 
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;background: linear-gradient(#000,#FFFF,#000);
}
section 
{
	position: absolute;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
	overflow: hidden;
}
section::before 
{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(#000,#FFFF,#000);
	animation: animate 8s linear infinite;
}
@keyframes animate 
{
	0%
	{
		transform: translateY(-100%);
	}
	100%
	{
		transform: translateY(100%);
	}
}
section span 
{
	position: relative;
	display: block;
	width: calc(6.25vw - 2px);
	height: calc(6.25vw - 2px);
	background: #181818;
	z-index: 2;
	transition: 1.5s;
}
section span:hover 
{
	background: #FFFFFF;
	transition: 0s;
}

input[type="submit"]:active
{
	opacity: 0.7;
}
@media (max-width: 900px)
{
	section span 
	{
		width: calc(10vw - 2px);
		height: calc(10vw - 2px);
	}
}
@media (max-width: 600px)
{
	section span 
	{
		width: calc(20vw - 2px);
		height: calc(20vw - 2px);
	}
}
.middle-box {
position: absolute;
z-index: 1000;
display: flex;
flex-direction: center;
align-items: center;
justify-content: center;
background: #222;
padding: 5px;
border-radius: 4px;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.9);
color: #fff;
font-size: 13px;
font-style: normal;
	padding: 1px 15px 1px 15px;
}

.middle-box h2 {
  font-size: 2em;
  color: #fff;
  text-transform: uppercase;
}

.middle-box img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.middle-box .card {
  background: #333;
  padding: 50px;
  border-radius: 4px;
  margin-bottom: 0px;
}

.middle-box table {
  width: 100%;
  margin-bottom: 20px;
  color: #fff;
}

.middle-box table th {
  text-align: left;
  padding: 1px 15px 1px 15px;
  border: 0px  #555;
}

.middle-box a {
  color: #FDFBFB;
  text-decoration: none;
}

.middle-box a:hover {
  text-decoration: underline;
}

.middle-box button {
  padding: 10px 20px;
  background: #fff;
  border: none;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
}

.middle-box button:hover {
  background: #fff;
}
