html, body {
  margin: 0;
}
* {
  box-sizing: border-box;
}
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;

  background-image: url("landing-page-assets/images/main-placeholder.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-container {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0)
  );
}

.main-img {
  max-width: 500px;
  width: 100%;
}

.coming-soon {
  font-size: 55px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-align: center;
  
}