/*---------------------------------------------------------
 * *	Author:			Travolgi
 * *	Theme:			Tris - Arcade Games
 * *	Version:			1.0.0
 * *	Created: 		25/02/2025
 * *	Last update:	25/02/2025
 * ---------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #56008d;
  color: #fff;
  font-family: "Press Start 2P", monospace, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
  padding: 3rem 1rem;
}

footer {
  padding: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.title {
  display: inline-block;
  color: #ed0e8e;
  letter-spacing: 10px;
  text-shadow: 4px 0 #0df2c3, -4px 0 #0df2c3, 0 4px #0df2c3, 0 -4px #0df2c3, 2px 2px #0df2c3, -2px -2px #0df2c3, 2px -2px #0df2c3, -2px 2px #0df2c3;
  margin-bottom: 3rem;
  box-shadow: 0 0 5rem #f1cb0b;
  border: 0.15rem solid #f1cb0b;
  border-radius: 1rem;
  padding: 1rem 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #0df2c3;
  text-shadow: 0 0 1rem #f1cb0b;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}
a:hover {
  color: #ed0e8e;
}

img {
  width: 100%;
}

.txt-center {
  display: block;
  font-size: 0.8rem;
  text-align: center;
}

button, .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin-top: 2.5rem;
  border: 0;
  font-family: "Press Start 2P", monospace, sans-serif;
  background: #ed0e8e;
  color: #fff;
  transition: 0.6s ease;
}
button:hover, .btn:hover {
  background: #2f9ef0;
}

a.btn-buy {
  z-index: 999999;
  position: fixed;
  top: 25%;
  right: -10.5rem;
  padding: 0.6rem 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 0, 0, 0.75);
  transition: 0.6s ease;
}
a.btn-buy:hover {
  right: 0;
  color: var(--white);
}

.board {
  display: flex;
  justify-content: start;
  flex-direction: row;
  gap: 2rem;
}
.board .game-area {
  position: relative;
  padding: 1rem;
}
.board .game-area .game-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  inset: 0;
  text-align: center;
  background-color: #0df2c3;
  box-shadow: 0 0 5rem #f1cb0b;
  transition: all 1s ease-out;
}
.board .game-data {
  width: 25rem;
  padding: 1rem;
}

@media only screen and (max-width: 1080px) {
  #start img {
    max-width: 100%;
  }
  .board {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */