body{
    background-color: rgb(35, 35, 35);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, 'SF Pro Text', 'SF Pro Icons', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 18px;

}

.game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 350px;
  background-color: rgb(45, 45, 45);
  border-radius: 10px;
  margin: 20px auto;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.games{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;           /* Spazio tra i giochi */
  flex-wrap: wrap;     /* Permette di andare a capo */
}

.game-button {
  text-decoration: none;
  padding: 20px 20px 20px 20px;
  color: white;
  background-color: lime;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

img {
  width: 50%;
  height: auto;
  padding-bottom: 20px;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
}

.back-arrow {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.header-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.header-center img {
  width: 100px;
  height: auto;
  margin-right: 30px;
}

.header-center h1 {
  margin: 0;
}

.text-block {
  background-color: rgb(55, 55, 55);
  border-radius: 30px;
  padding: 20px;
}

.text-block p {
  margin: 30px;
  font-size: 20px;
}

.text-block img{
  width: 75%;
  height: auto;
  margin-right: 30px;
}

strong {
  color: lime;
}

a {
  color: blue ;
  text-decoration: none;
}

.lara-img {
  width: 20%;
  height: auto;
  padding-top: 200px;
  display: flex;
}

.text-block .lara-img {
  width: 20%;
  height: auto;
  padding-top: 200px;
  display: flex;
}

.icon-title {
  margin-right: 10px;
  display: flex;
}

.icon-title img {
  width: 100px;
  height: auto;
  padding-left: 20px;
}