main {
  width: 100%;
  min-height: 100vh;
}

.logo {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.logo_dev {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.grid {
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 20px;

  justify-items: center;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.gridDevelopment {
  cursor: pointer;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 16px;
  transition: all 300ms ease;
}

.gridDevelopment:hover {
  border-color: black;
}

@media screen and (min-width: 980px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer {
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.8rem;
    border-top: 1px solid rgba(from black r g b / 10%);
}

footer a {
    font-size: 12px;
    cursor: pointer;
}
