@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif; }
a {
  text-decoration: none;
}

.container {
  width: 100%; }

.card {
  width: 60%;
  height: 80%;
  min-width: 300px;
  min-height: 300px;
  max-height: 300px;
  padding: 20px;
  text-align: center;
  color: #fff; }
  .card a {
    color: #fff;
    text-decoration: none; }
  .card a:hover {
    color: #fff;
    text-decoration: none; }
  .card__container {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    color: white; }
  .card__disabled {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    color: white;
    opacity: 10%;
    pointer-events: none;
    background-image: url("/images/coming-soon.jpg");
    background-repeat: no-repeat;
    background-size: 300px 300px;
    min-width: 250px;
    min-height: 250px;
    max-height: 250px;
    max-width: 250px;
    padding: 20px; }
  .card__content {
    width: 90%;
    height: 95%;
    background: #606060;
    margin: 10px auto;
    border-radius: 5px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s all ease-in-out; }
    .card__content:hover {
      margin-top: -10px; }
  .card__image_container {
    width: 100px;
    height: 100px;
    opacity: 50%; }
  .card__header {
    text-transform: uppercase;
    font-size: 15px;
    margin: 40px auto;
    text-decoration: none;
    }
    .card__header a {
      color: #fff;
      text-decoration: none; }
    .card__header a:hover {
      color: #fff;
      text-decoration: none; }
