@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Inter", sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
}

.feature__preview {
  background-image: url("https://cdn.prod.website-files.com/66a5de2d68f9fcecf7c1bf04/66f67a23f993f27fdc12d2fe_grid%20background.svg");
}

.automate__card {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem 1rem;

  border-color: transparent;
  box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.46),
    0 3px 6px 0 rgba(0, 0, 0, 0.02), 0 5px 12px 4px rgba(0, 0, 0, 0.05);
}

.automate__card:hover {
  border-color: #e5e5e5;
  transition: border-color 0.3s ease-in-out;
  scale: 1.05;
  transition: scale 0.3s ease-in-out;
}

.automate__card div {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}
