@charset "utf-8";
/* CSS Document */

/* styles.css */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f0f0f0;
}

.color-change-3x {
	-webkit-animation: color-change-3x 20s linear infinite alternate both;
	animation: color-change-3x 20s linear infinite alternate both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-1-6 10:6:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation color-change-3x
 * ----------------------------------------
 */
@-webkit-keyframes color-change-3x {
  0% {
    background: #222;
	background-color:#222;
  }
  50% {
    background: #000;
	background-color:#000;
  }
  100% {
    background: #321;
	background-color:#321;
  }
}
@keyframes color-change-3x {
  0% {
    background: #222;
	background-color:#222;
  }
  50% {
    background: #000;
	background-color:#000;
  }
  100% {
    background: #321;
	background-color:#321;
  }
}
/**
 * ----------------------------------------
 * END animation color-change-3x
 * ----------------------------------------
 */

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.logo-container {
	padding: 20px 0 20px 0;
  margin-bottom: 1.5rem;
	background-color: rgba(255,255,255,0.1);
	border-radius: 10px;
}

.logo {
  width: 150px;
  height: auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

h3 {
	color: #cc9900;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

a {
	text-decoration: none;
}

section {
	margin-top:3rem;
	padding:20px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 10px;
}

.games-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.game-card {
  background-color: #1e1e1e;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  color: #ffcc00;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: scale(1.05);
  background-color: #2a2a2a;
}

#schedule {
	text-align: left;
}

li {
	margin-top: 1rem;
}

