/* Import open sans */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");

body {
  font-family: "Open Sans";
  text-align: center;
  color: white;
}

/* Disable drag */
img {
  pointer-events: none;
}

/* Disable text selection */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#main-container {
  box-sizing: border-box;
  padding: 50px 10vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes move_bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#leankr_logo {
  width: 250px;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  padding: 30px 0px;
  font-size: 40px;
}

h2 {
  font-size: 25px;
  padding: 30px 0px;
}

strong {
  font-weight: bold;
}

#ignifai_link {
  color: white;
  text-decoration: none;
  border: 3px solid white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  font-size: 30px;
  margin: 50px 0;
  transition: all 0.3s ease;
}

#ignifai_link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

#ignifai_link > img {
  width: 200px;
  height: auto;
}

#video-background,
#gradient-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#gradient-background {
  background: linear-gradient(45deg, #10a1d7c0, #34deafc0);
  background-size: 200% 200%;
  animation: move_bg 5s ease infinite;
}

@media (max-width: 768px) {
  #main-container {
    padding: 30px;
  }
  #leankr_logo {
    width: 200px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  #ignifai_link {
    width: 300px;
    font-size: 25px;
  }
  #ignifai_link > img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  #main-container {
    padding: 20px;
  }
  #leankr_logo {
    width: 150px;
  }
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 20px;
  }
  #ignifai_link {
    width: 200px;
    font-size: 20px;
  }
  #ignifai_link > img {
    width: 100px;
  }
}

@media (max-width: 350px) {
  #main-container {
    padding: 10px;
  }
  #leankr_logo {
    width: 100px;
  }
  h1 {
    font-size: 17px;
  }
  h2 {
    font-size: 14px;
  }
  #ignifai_link {
    width: 50%;
    font-size: 15px;
    margin: 20px 0;
    flex-direction: column;
  }
  #ignifai_link > img {
    width: 80px;
  }
}
