body {
    font-family: "Poppins", sans-serif;
    margin: 50px 50px 0 50px;
    background-color: rgb(161, 240, 250);
    display: flex;
    flex-direction: column;
    min-height: 95vh;
  }
  .main {
    flex: 1;
  }
  
  .fontdiner-swanky-regular {
    font-family: "Fontdiner Swanky", serif;
    font-weight: 400;
    font-style: normal;
  }

  .noto-sans-display-normal {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }
  
  .russo-one-regular {
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  
  h1 {
    font-family: Fontdiner Swanky;
    font-size: 4rem;
    text-align: center;
  }

  h3 {
    font-family: Russo One;
    background-color: black;
    color: white;
    padding: 8px 10px;
  }

  p {
    font-family: Noto Sans Display;
    font-size: small;
  }
  
  .games-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }

  .game {
    flex: 1
    max-width: 400px;
    background-color: #F1F0EF;
    padding: 0px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
  }

  .game:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
  }

  .game-title {
    font-weight: 700;
    margin-bottom: 10px;
  }

  @media (max-width: 800px) {
    .games-container {
      flex-direction: column;
      height: 100%;
    }
  }

  
  footer {
    text-align: center;
    color: midnightblue;
    background-color: aquamarine;
  }