* {
  margin: 0;
}

body {
  background-color: rgb(0, 19, 33);
  background: linear-gradient(
    180deg,
    rgb(0, 56, 94) 0%,
    rgba(0, 19, 33, 1) 100%
  );
  color: white;
  font-family: monospace;
  min-height: 100vh;
  overflow-x: hidden;
}

.wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.content {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title h1 {
    font-size: 3em;
}

.coming-soon {
    margin-top: 100px;
}