body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('./img/bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

main {
  display: flex;
  flex-direction: column;

  flex: 1;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
  margin-top: 10px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  text-align: center;
}

.logo {
  height: 80px;
}

.hero-content {
  margin-bottom: 0px;
}

.coming-soon {
  font-size: 1.5em;
  color: #6c79ff
}

.hero-image {
  max-width: 100vw;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

.features {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: aliceblue;
  flex-grow: 1;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}