  @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap");

body {
  margin: 0;
  padding: 0;
  color: #3c484e;
  background-color: #f5f5f5;
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1rem;
}

.Main {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.app {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}

.Item {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
  grid-row-gap: 1.5em;
  display: grid;
}

.Card {
  text-decoration: none;
  box-shadow: 8px 14px 38px rgba(39, 44, 49, 0.06),
    1px 3px 8px rgba(39, 44, 49, 0.03);
  border-radius: 5px;
  margin: 0 0 20px 0;
  display: block;
  animation-duration: 4s;
  animation-name: fade;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Card img {
  width: 30vw;
  height: auto;
  border-radius: 5px 5px 0 0;
}

.Card h2 {
  font-size: 24px;
  font-weight: bold;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
}

.Card p {
  font-size: 14px;
  padding: 5px 10px;
}

@media (min-width: 768px) {
  .Card {
    width: 100%;
  }
}