body {
	font-family: Arial;
	background-color: rgb(100,50,0);
	margin-bottom: 160px;
}

h1 {
	color: lightgreen;
	font-size: 75px;
	margin-top: 0px;
	text-shadow: 7px 7px 0px black;
}

p {
	color: white;
	font-size: 25px;
}

.centered {
	text-align: center;
}
.link {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  display: flex;
  align-items: center
}


.marquee {
  height: 600px;
  overflow: hidden;
}

.marquee ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  animation: marquee 30s linear infinite;
}

.marquee li {
  display: block;
  width: 100%;
  height: 100px;
}

@keyframes marquee {
  0% {
    top: 600px;
  }
  100% {
    top: -600px; /* adjust this value based on the number of items and their height */
  }
}


.link label {
	color: white;
	font-size: 100px;
	padding-left: 5px;
}
.link a:visited, .link a:link {
	color: #5865F2
}

.iFrameContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.iFrame {
    display: block;
    margin: auto;
	background-color: black;
}

.version {
	color: lightgray;
}

.iframe-wrapper button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
    font-size: 75px;
    background-color: lightgreen;
    border-color: white;
}

div .credit {
	color: lightgray;
	font-size: 20px;
	margin-top: 0px;
	position: fixed;
	bottom: 0;
	text-align: right;
	margin-bottom: 0px;
	width: 99.5%;
}

div ul {
	color: white;
	font-size: 25px;
}

div .otherLinks {
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 39px;
	color: lightgray;
	font-size: 20px;
}

div ul {
	margin-top: 0px;
}

.bottom {
	background-color: rgb(75,33,0);
	width: 100%;
	margin-left: 0px;
	height: 150px;
	padding-top: 3px;
	padding-left: 3px;
	position: fixed;
	bottom: 0;
	left: 0;
}

a:visited, a:link {
	color: lightblue
}