body {
  height: 100vh;
  width: 100vw;
  background: rgb(250, 250, 250);
  color: black;
  font-family: "Segoe UI";
  margin: 0px;
}

h1 {
  text-align: left;
  font-weight: 600;
  font-size: 64px;
  margin: 0px;
  width: 100%;
}

a {
  color: black;
  display: inline-block;
  border: none;
  padding: 1rem 2rem;
  margin-top: 48px;
  text-decoration: none;
  background: #0f172a;
  border-radius: 16px;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

a:hover,
a:focus {
  background: #134684;
}

a:focus {
  outline: 1px solid #fff;
  outline-offset: -4px;
}

a:active {
  transform: scale(0.99);
}

img {
  box-shadow: 0px 0px 40px 8px rgb(30 30 30 / 18%);
  border-radius: 15px;
}

.center {
  /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 64px;
}

.hero {
  width: 800px;
  background: transparent;
}

@media (max-width: 1400px) {
  .content {
    flex-direction: column;
  }
}
