body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(to bottom,#c1eff7, #003e80);
}

.logo-container {
  background: #34c6eb;
  padding: 10px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-left: 40px;
  margin-top: 30px;

  transition: transform 0.2s;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
  border-radius: 50%;
}

.logo-container:hover {
  transform: scale(1.05);
}
.logo-container span {
    color: white;
    font-size: 24px;
    margin-left:10px;



}

.fullscreen {
  background-color:#00527a;
  padding: 15px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 20px;


  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;

}
.fullscreen:hover {
  transform:scale(1.05);
}
.fullscreen span {
    color: white;
    font-size: 20px;
    display: inline-block;

}
a {
  text-decoration: none;
  display: flex;
  align-items: center;

}
.game-page-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;


  padding: 10px;
}
.game-iframe {

  max-width: 1000px;
  padding: 20px;
  flex-shrink: 0;
  width: 1000px;

  }
iframe {
  width: 100%;
  height: 600px;
  display: block;
  border: 4px solid #34c6eb;
  background-color: black;

  border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);


}

.games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start ;
  gap: 1px;



}

.game-card {
  width: 100px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 10px;
  border-color: black;



  margin: 15px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;




}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {

  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 8px;
  margin: 0;
}
@media (max-width: 1300px) {
  .game-card {
    flex:1 0 20%;
    max-width: 100%;
    width: 90%;


  }
  .game-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;

  }
  .logo-container {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .game-page-layout {
    flex-direction: column;


  }
  .game-iframe {
    flex:1 0 50%;
    max-width: 100%;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    box-sizing: border-box;

  }
  .fullscreen {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}


a {
  text-decoration: none;
}

.footer {
  background-color: #011e4a;
  color: #eee;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  text-align: right;
  right: 0;


  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}

.footer a {
  color: #4db8ff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;

  display: inline;

}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.madeby  {
  font-family: cursive;
  color: #fff;
  margin-left: 15px;
}

@media (max-width: 350px) {
  .game-card {
    flex:0 0 45%;
    max-width: 100%;
    width: 100%;
    margin:10px auto;
    gap: 20px;

  }
  .game-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}
