* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  background: linear-gradient(rgba(20, 26, 35, 0.55), rgba(20, 26, 35, 0.55));
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  font-family: "Open Sans", Helvetica;
  margin: 0;
  position: relative;
}

a {
  text-decoration: none;
}

.container {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.logo img {
	max-width: 300px;
	height: auto;
	margin-bottom: 30px;
	animation: logo-animation 5s infinite ease-in-out;
}

.logov {
	text-align: center;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 15px; /* Add padding to the left and right */
  }

.logov img {
	max-width: 200px;
	height: auto;
	margin-bottom: 30px;
	animation: logo-animation 5s infinite ease-in-out;
}

.playercount {
  display: inline-block;
  margin: 20px 15px 0;
  padding: 2px 0;
  background-color: transparent;
  font-size: 1em;
  color: white;
  text-align: center;
  border-radius: 2px 0 2px 0;
  border-color: #ffffff;
  line-height: 27px;
}

.playercount > p > span {
  font-weight: bold;
  padding: 1px 4px;
  border-radius: 3px;
  background: #737373;
  margin: 0 3px;
}

.items {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
  }
  

.item img {
  transition: all 0.2s ease;
  margin-bottom: 7px;
}

.item img:hover {
  transform: scale(1.1);
}

.img {
  width: 80%;
}

.title {
  font-weight: bold;
  font-size: 17px;
  color: white;
}

.subtitle {
  color: #ffffff;
  font-size: 15px;
}

.title,
.subtitle {
  margin: 0;
}

.subtitle {
	margin: 15px;
	padding: 5px 10px; /* Adjust the values to increase or decrease the space */
	display: inline-block;
	background-color: rgba(128, 126, 126, 0.3);
	border-radius: 10px;
	font-size: 150%;
}


.custom-list {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 0; /* Remove default padding */
}

.custom-list li {
  margin-bottom: 15px;
}

li {
  list-style: none;
}

li:before {
  content: "";
}

li a {
	display: inline-block;
	padding: 8px 12px;
	background-color: #737373;
	color: white;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	font-size: 125%;
}

li a:hover {
  background-color: #fff;
}

.white-bold-background {
	color: white;
	font-weight: bold;
	background-color: rgba(128, 126, 126, 0.3);
	font-size: 150%;
	border-radius: 5px;
	padding: 10px;
	margin: 0 auto; /* Center the text */
	max-width: 100%; /* Adjust the width to fit the container */
}

.back-button {
  font-size: 20px;
  padding: 10px 20px;
  background-color: maroon;
}

.back-button:hover {
  background-color: darkred;
}

.pmc {
  background-color: rgb(246, 80, 80);
}

.pmc:hover {
  background-color: rgb(255, 4, 4);
}

.mmp {
  background-color: rgb(235, 152, 28);
  
}

.mmp:hover {
  background-color: rgb(247, 225, 29);
}

.ms {
  background-color: rgb(10, 156, 27);
}

.ms:hover {
  background-color: rgb(46, 255, 4);
}

.mpe {
  background-color: rgb(80, 141, 246);
}

.mpe:hover {
  background-color: rgb(4, 255, 234);
}

.mss {
  background-color: rgb(137, 21, 191);
}

.mss:hover {
  background-color: rgb(255, 0, 187);
}

@keyframes logo-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 1000px) {
  .items {
    justify-content: center;
  }

  .item:not(:first-child) {
    margin-left: 90px;
  }
}

@media (min-width: 1250px) {
  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 15px;
  }

  .logo {
    margin-bottom: 25px;
  }

  .img {
    width: 100%;
  }

  .items {
    padding: 30px 0 20px;
  }

  .playercount {
    font-size: 1.22em;
    padding: 8px;
  }

  .extrapad {
    padding: 0 42.5px;
  }

  .playercount > p > span {
    padding: 4px 7px;
  }
}
