body {
  margin: 0;
  font-family: "helvetica";
  color: white;
}

.container {
  display: grid;
  grid-template-columns: 16rem 1fr 16rem;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "header header header"
    "nav main aside"
    "footer footer footer";
  min-height: 100vh;
}

#card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: fit-content;
  height: max-content;
}

.logo {
  text-align: center;
  vertical-align: middle;
}

.logo img {
  margin: 30px;
}

#pics img {
  width: 200px;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

header {
  grid-area: header;
  padding: 2rem;
  background-color: #1e293b;
  background: #1e293b;
  background: linear-gradient(
    90deg,
    rgba(30, 41, 59, 1) 0%,
    rgba(100, 116, 139, 1) 100%
  );
}

nav {
  grid-area: nav;
  padding: 2rem;
  background-color: #334155;
  background: linear-gradient(
    90deg,
    rgba(30, 41, 59, 1) 0%,
    rgba(51, 65, 85, 1) 100%
  );
}

nav ul {
  text-decoration: none;
  list-style-type: none;
  cursor: pointer;
  line-height: 200%;
}

main {
  grid-area: main;
  padding: 2rem;
  background-color: white;
  color: #1e293b;
}

aside {
  grid-area: aside;
  padding: 2rem;
  background-color: #64748b;
  color: white;
}

footer {
  grid-area: footer;
  padding: 2rem;
  background-color: #94a3b8;
  color: #1e293b;
  font-size: 0.75em;
  text-align: center;
}

.activeLink {
  font-weight: 300;
  font-style: italic;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.inactiveLink {
  font-weight: 100;
  font-style: normal;
  text-shadow: none;
}

/*responsive*/
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(5rem, auto) 1fr minmax(5rem, auto) auto;
    grid-template-areas:
      "header"
      "nav"
      "main"
      "aside"
      "footer";
  }
  nav li {
    display: inline-block;
    margin-right: 25px;
  }
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 50%;
  text-align: center;
  margin-top: 25px;
  padding: 10px;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.cardContainer {
  padding: 2px 16px;
}

.grid {
  display: grid;
  grid-template-columns: 10% 50%; /* Two columns, each 50% */
  grid-template-rows: auto auto; /* Two rows */
  gap: 10px; /* Adjust the gap between grid items if needed */
  width: 75%;
  div {
    display: flex;
  }
}
