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;

}

.game-button {
  text-decoration: none;
  padding: 20px 20px 20px 20px;
  color: white;
  background-color: lime;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  transform: translateY(-50%);
  cursor: pointer;
}

.game-button:hover {
  background-color: rgb(38, 187, 8);
}

nav {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: right;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Spazio tra i link */
}

nav a{
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

nav a:hover{
  border-bottom: 2px solid lime;
}

.profile {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.profile-text {
  margin-left: 30px;
}

.container{
  background-color: rgb(55, 55, 55);
  padding: 30px;
  border-radius: 10px;
  margin: 20px;
}

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
}