/*
=======================
IMPORTS - FONT FAMILIES
=======================
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Outfit:wght@400;500&family=Raleway&display=swap");
/*
==================
VARIABLES - COLORS
==================
*/
/*
=========================
VARIABLES - FONT FAMILIES
=========================
*/
/*
===============
STYLES - GLOBAL
===============
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  overflow: overlay;
}

hr {
  margin: 1rem;
  border-radius: 5px;
}

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

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

::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 15px;
}

/*
====================
STYLES - WELCOME TXT
====================
*/
.welcome {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
  background: linear-gradient(-110deg, #4795F0 0%, #2868B4 23.96%, #1A487E 67.19%, #153B68 90.62%, #13355F 100%);
  background-size: 400%;
  -webkit-animation: changeGradient 8s ease infinite;
          animation: changeGradient 8s ease infinite;
  color: #fff;
}

.title {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

/*
===============
STYLES - IMAGES
===============
*/
.image {
  display: grid;
  justify-content: center;
  padding-top: 1rem;
  text-align: center;
}

.browser-img {
  width: 98%;
  height: 98%;
  max-width: 98%;
  max-height: 98%;
  filter: drop-shadow(0 0 0.8rem #000);
  -webkit-filter: drop-shadow(0 0 0.8rem #000);
  transform: all 0.3s ease-in-out;
  transition-duration: 250ms;
}

.browser-img:hover {
  transform: scale(1.015);
  -webkit-transform: scale(1.015);
  -moz-transform: scale(1.015);
  -ms-transform: scale(1.015);
}

.img-subtitle {
  font-family: "Raleway", sans-serif;
}

/*
===============
STYLES - DL BTN
===============
*/
.dl-btn {
  font-family: "Outfit", sans-serif;
  margin: 1rem 0;
  padding: 0.5rem;
  text-align: center;
}

.dl-btn button {
  cursor: pointer;
  margin: 0.5rem 0 0.5rem 0;
  border: none;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  background-color: #2868B4;
  color: #fff;
  font-size: 1.2rem;
  padding: 15px;
}

.dl-btn button:hover {
  background-color: #1a4475;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.dl-btn .signin {
  font-size: 0.7rem;
  font-family: "Outfit", sans-serif;
  color: #777;
}

.dl-btn p a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.dl-btn p a:hover {
  color: #2868B4;
  text-decoration: none;
  cursor: pointer;
}

/*
===============
STYLES - FOOTER
===============
*/
.footer {
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e5e5e5;
  width: 100%;
  color: #000;
}

.footer a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.footer .alph-btn:hover {
  color: #9460d8;
}

.footer h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: #181818;
  -webkit-user-select: none;
          user-select: none;
  /* Standard */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
}

.footer i {
  font-size: 1.5rem;
  padding-top: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.fa-telegram {
  padding-left: 5px;
}

.fa-youtube {
  padding-left: 5px;
}

.fa-twitter:hover {
  color: #1DA1F2;
}

.fa-telegram:hover {
  color: #229ED9;
}

.fa-youtube:hover {
  color: #FF0000;
}

/*
=================
STYLES - 404 PAGE
=================
*/
.errpage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.errpage button {
  width: 150px;
  height: 45px;
  cursor: pointer;
  margin: 0.5rem 0 0.5rem 0;
  border: none;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  background-color: #000;
  color: #262626;
}

/*
=============
MEDIA QUERIES
=============
*/
@media (prefers-color-scheme: dark) {
  body {
    background-color: #181818;
    color: #fff;
  }

  .browser-img {
    filter: drop-shadow(0 0 0.8rem #fff);
    -webkit-filter: drop-shadow(0 0 0.8rem #fff);
  }

  .dl-btn p a {
    color: #fff;
  }

  .footer {
    background-color: #262626;
    color: #fff;
  }

  .errpage button {
    background-color: #fff;
    color: #000;
  }

  .footer a {
    color: #e5e5e5;
  }

  .footer h1 {
    color: #e5e5e5;
  }
}
@media (max-width: 768px) {
  .welcome h1, p {
    padding: 0.8rem;
  }

  .footer {
    text-align: center;
  }

  .footer img {
    display: none;
  }
}
/*
==========
ANIMATIONS
==========
*/
@-webkit-keyframes changeGradient {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
}
@keyframes changeGradient {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
}/*# sourceMappingURL=style.css.map */