* {
  font-family: "Roboto", serif;
}

h2 {
  margin-top: 25px;
  margin-bottom: 20px;
}

body {
  background-color: #F4F7F5;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  overflow-x: hidden;
}

.games_container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin: 0 10% 0 10%;
}

.game_row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
}

.game_margin {
  margin: 20px;
}

.game {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-bottom: 10px;
  border-radius: 20px;
  background-color: #225ce0;
  color: whitesmoke;

  transition-duration: 500ms;
  scale: 1;
}

.game:hover {
  scale: 1.1;
}

a {
  text-decoration: none;
}

.game_img {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.navbar {
  display: flex;
  align-items: center;
  padding-right: 4%;
  padding-left: 4%;
  height: 8vh;
  background-color: #012f8d;
  width: 92%;
}

.navbar_left {
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}

.navbar_right {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.navbar_link {
  color: whitesmoke;
  font-size: x-large;

  transition-duration: 250ms;
}

.navbar_link:hover {
  color: #ADD7F6;
  transform: translate(0, -3px);
}

.navbar_title {
  font-size: xx-large;

  transition-duration: 500ms;
  scale: 1;
  color: whitesmoke;
}

.navbar_title:hover {
  scale: 1.1;
  color: #ADD7F6;
}

h1 {
  font-size: 70px;
  margin-top: 35px;
  margin-bottom: 30px;
  font-family: 'SnesItalic';
  text-shadow: 2px 2px 5px #225ce0;
  animation-iteration-count: infinite;
  animation-name: example;
  animation-duration: 10s;
}

@keyframes example {
  0% {
    text-shadow: 2px 2px 5px #225ce0;
  }

  50% {
    text-shadow: 2px -2px 5px red;
  }

  100% {
    text-shadow: 2px 2px 5px #225ce0;
  }
}

@font-face {
  font-family: "Roboto";
  src: url(Roboto-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "SnesItalic";
  src: url(SnesItalic-1G9Be.ttf) format("truetype");
}