.contact-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  /* padding: 1rem; */
}

.contact-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  /* margin: 1rem; */

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.contact-link > a {
  text-decoration: none;
  color: var(--link-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card > button > a {
  color: white;
}

button {
	border: none;
	outline: none;
}

.container {
  width: 100%;
  margin: auto;
}

/**********************
 * Media Queries
 **********************/

@media (min-width: 764px) {
  .contact-card-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
  }
  
  .container {
    width: 700px;
  }
}

@media (min-width: 900px) {
  .container {
    width: 800px;
  }

  .contact-card-container {
	width: 800px;
	display: grid;
	grid-template-columns: 1fr 1fr;
  }
}


