@import url('https://fonts.googleapis.com/css2?family=Barriecito&display=swap');

.HomeTitle {
  font-family: "Barriecito", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size:300%;
  margin: 0;
  padding: 0;
}

.GameHolder {
    background-color: transparent;
    width: 100%;
    margin-top: 3%;
    text-align: center;
}

.Game {
    background-color: gray;
    width: 26vw;
    height: 10vw;
    border-radius: 0.7vw;
    margin: 2vw;
    font-weight: bold;
    border-width: 0.25vw;
    border-color: black;
    transition: transform 1s;
}
.Game:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.UpgradeContainer {
  background-color: red;
}