/* Styles for the "contacts" section */

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-card {
  background-color: var(--light-theme-color);
  color: var(--dark-theme-color);
  width: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 20px;
  border-radius: 10px;
}

.contact-card:hover {
  cursor: pointer;
  opacity: 0.92;
}

svg {
  width: 40px;
  height: 40px;
}
