* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  overflow: hidden;
}

body {
  background: linear-gradient(180deg, #0d539e 0%, #d1dee6 100%);
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  width: 100vw;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.logo {
  width: 200px;
  display: flex;
  margin: auto;
}

h1 {
  font-family:
    Bebas Neue,
    sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 48px;
  text-align: center;
  margin-top: 24px;
}

.about {
  padding: 20px;
  width: 350px;
  line-height: 20px;
}

.about-container {
  margin: 16px auto;
  display: flex;
  align-items: center;
  max-width: 1020px;
  color: white;
}

.about-img {
  width: 32px;
}

.bottom-img {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -60%;
  left: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  html {
    overflow: auto;
  }
  body {
    align-items: start;
    justify-content: start;
    margin-top: 20px;
    width: 100%;
  }

  .logo {
    width: 200px;
    display: flex;
    margin: 0;
  }

  h1 {
    font-family:
      Bebas Neue,
      sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 48px;
    margin-top: 24px;
  }

  .about-container {
    flex-direction: column;
    padding: 0;
  }

  .about {
    width: 100%;
  }

  .bottom-img {
    bottom: -10%;
  }
}
