* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background: linear-gradient(45deg, rgb(60, 179, 113) 0%, rgb(0, 0, 0) 100%) no-repeat rgb(60, 179, 113);
  height: 100%;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: flex;
  place-content: center;
  place-items: center;
  width: 96%;
}

@media screen and (max-width: 440px) {
  body {
    flex-direction: column;
    place-content: start;
  }
}

.logo {
  width: 96px;
  margin: 27px 55px;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  width: 90%;
}

.card {
  display: block;
  min-height: 100px;
  background-color: rgb(0 0 0 / 80%);
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgb(0, 0, 0, 10%);
}

.card:hover {
  transform: scale(0.99);
}

.card a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.card a:hover {
  color: #3cf453;
  transform: scale(0.98);
}