/* Apply border-box globally */
* {
  box-sizing: border-box;

}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  align-items: center;
  margin: 0;
  text-align: center;
  background-color: white;
  color: black;
}

.navBar {
  display: flex;
  align-items: center;
  padding: 1vw;
  width: 100%;
  z-index: 2;
  position: fixed;
  top: 0;
  height: 6vw;
  border-bottom: 2px solid black;
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}

.homeButton {
  margin-left: 2vw;
  font-size: 2vw;
}

.cgh {
  margin-top: 7vw;
  font-size: 6vw;
}

.mission {
  font-size: 2vw;
  margin-top: -4vw;
}

.games {
  width: 95vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: calc(250px * 4 + 2vw * 3);
  gap: 2vw;
  height: 100vh;
  background: white;
}

.games img{
  border: 2px solid black;
  border-radius: 22px;
  margin: 7vw 0 0 0;
  box-shadow: 0 4px 8px black;
  transition: all ease 0.4s; /* Move this here */
}

.games img:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 20px black;

}

.contacts {
  position: relative;
  display: block;
  width: 100%;
  height: 60vh;
  background: black;
}