@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

:root {
  --primary-color: #0cb50c;
  --light-primary-color: #cdfdce;
  --font-color: #0cb50c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body,
input {
  font-family: Inter, sans-serif;
  color: var(--font-color);
}

::selection {
  background-color: var(--primary-color);
  color: white;
}

::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-track:hover {
  background: rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 0px;
  background-color: var(--primary-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f0f0f0 inset !important;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color-scheme: light;
  background-color: #e9e9e9;
}

body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(images/pop-transparent-bg.png);
  opacity: 0.5;
  animation: bg-animation 120s linear infinite alternate-reverse;
  z-index: -1;
  pointer-events: none;
}

@keyframes bg-animation {
  from {
    background-position-y: -100%;
  }

  to {
    background-position-y: 100%;
  }
}

@media only screen and (max-width: 850px) {
  main {
    grid-template-columns: 1fr !important;
    max-height: none !important;
  }

  main>.bg {
    opacity: 0.1 !important;
  }

  main>.left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  main>.left>h1 {
    text-align: center;
  }
}

@media only screen and (max-width: 580px) {
  main {
    padding: 10px !important;
  }

  main>.left>.links {
    justify-content: center !important;
  }
}

@media only screen and (max-device-width: 480px) {
  main>.left>.links>a.download {
    display: none !important;
  }
}

main {
  position: relative;
  padding: 64px;
  display: flex;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1286px;
  max-height: 780px;
}

main>.left>.badge {
  border-radius: 20px;
  background: white;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 500;
}

main>.left>h1 {
  margin: 20px 0 10px;
  font-weight: 600;
  font-size: 50px;
  border-radius: 0 50px 50px 0;
}

main>.left>.company {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

main>.left>.company>img {
  height: 32px;
  margin-left: 2px;
}

main>.left>.links {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

main>.left>.links>a.download {
  display: flex;
  background: var(--font-color);
  color: white;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}

main>.left>.links>a.videos {
  text-decoration: none;
  color: var(--font-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

main>.left>.links>a.videos>img {
  pointer-events: none;
  user-select: none;
}

main>.left>.obs {
  font-size: 12px;
  margin-top: 20px;
  display: block;
  color: #929292;
  max-width: 90%;
}

main>.right>img {
  width: 100%;
  max-width: 700px;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0px 5px 30px #b3b3b3);
}