* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  background: #1e1e1e;
  color: white;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.hero__title {
  font-size: 3rem;
}
.hero__buttons {
  display: flex;
  gap: 20px;
}

.button {
  display: inline-block;
  background: #d4af37;
  color: black;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}

.card {
  background: #2b2b2b;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: white;
}

.form-sida {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
  align-items: stretch;
  text-align: center;
}
.form__input {
  width: 100%;
  padding: 10px;
}

@media only screen and (max-width: 1000px) {
  .cards {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */