body {
  padding: 0;
  margin: 0;
}

.App {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-image: url("assets/images/bg.png");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .App {
    justify-content: flex-start;
    padding-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .App {
    background-size: cover;
    background-repeat: no-repeat;
  }
}