.modal {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);

  display: flex;

  justify-content: center;
  align-items: center;

  z-index: var(--z-index-99);

  transition: all 300ms;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;

  background: #fff;
  padding: 20px;
  border-radius: var(--radius-normal);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 300ms ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.project-tech {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
