/* CSS for /projects */
body {
    font-family: sans-serif;
    font-size: "25px";
    color: black;
    text-align: left;
    background-color: #efebe0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  a {
    text-decoration: none;
    color: #0084ff;
  }
  .text-center {
    text-align: center;
  }
  .game-link {
    height: 240px;
    width: 200px;
  }
  .game-tile {
    background-color: #fe96a0;
    height: 240px;
    z-index: 1;
    width: 200px;
    color: #ffffff;
    border-radius: 30px;
    -webkit-animation: scale-down-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: scale-down-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .game-tile:hover {
    text-decoration: none;
    -webkit-animation: scale-up-center 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: scale-up-center 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  }
  @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  @-webkit-keyframes scale-down-center {
    0% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes scale-down-center {
    0% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  .game-icon {
    border-radius: 15px 15px 0 0;
    width: 200px;
    height: 200px;
  }
  .game-title {
    font-size: 15px;
    color: black;
    text-align: center;
    font-weight: normal;
  }
  .flex-container {
    display: flex;
    flex-direction: row;
    order: 0;
    flex-grow: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .container {
    padding: 10px;
  }
  /*
  .badge {
    background-color: red;
    color: white;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
  } */

  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fe96a0;
    padding: 20px;
    color: rgb(240, 240, 240);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0px 0px 20px #000000;
    -moz-box-shadow: 0px 0px 20px #000000;
    box-shadow: 0px 0px 20px #000000;
   }

  .navbar p {
    margin: 0 15px;
    cursor: pointer;
    transition: .3s;
    color: black;
  }

  #mySearch {
    width: 30%;
    text-align: center;
    font-size: 18px;
    margin: 1rem;
    border: 0px solid #ddd;
    border-radius: 16px;
    background-color: white;
    padding: 8px;
    height: auto;
    border: 1px solid grey;
  }

  #mySearch::placeholder {
    font-size: 16px;
    text-align: center;
  }
