@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

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

  
  /*===== VARIABLES CSS =====*/
  :root {
    --header-height: 3rem;
  
    /*========== Colors ==========*/
    --first-color: #080208;
    --first-color-alt: #1c191f;
    --first-color-send: #DE3B49;
    --title-color: #ffffff;
    --text-color: #c6beca;
    --text-color-light: #8F8A8A;
    --body-color: #4d2b60;
    --container-color: #000000;
    --hover-color: #6a666d;
  
    /*========== Font and typography ==========*/
    --body-font: 'Electrolize', sans-serif;;
    --biggest-font-size: 2rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
  
    /*========== Font weight ==========*/
    --font-semi-bold: 600;
    --font-bold: 700;
  
    /*========== Margenes ==========*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
  
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  
  .maintext {
  	letter-spacing: 0;
  	padding: .25em 0 .325em;
	  display: block;
	  margin: 0 auto;
  	text-shadow: 0 0 80px rgba(255,255,255,.5);

/* Clip Background Image */

	  background: url('https://cdn.discordapp.com/attachments/941769043889766431/952177961438674954/animated-text-fill.png') repeat-y;
	  -webkit-background-clip: text;
	  background-clip: text;

/* Animate Background Image */

	  -webkit-text-fill-color: transparent;
	  -webkit-animation: aitf 80s linear infinite;

/* Activate hardware acceleration for smoother animations */

	  -webkit-transform: translate3d(0,0,0);
	  -webkit-backface-visibility: hidden;

  }

/* Animate Background Image */

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



  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 2%;
    background-color: #000000;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  .logo {
    cursor: pointer;
    transition: .2s;
  }

  .logo:hover {
    transform: scale(1.1);
  }

  
  .nav__links a,
  .cta,
  .overlay__content a {
    font-family: Electrolize;
    font-weight: 500;
    color: #edf0f1;
    text-decoration: none;
  }
  
  .nav__links {
    list-style: none;
    display: flex;
    text-align: center;
    margin:  auto;
    justify-content: center;
    justify-items: center;
    margin-left: -150px;
  }
  
  .nav__links li {
    padding: 0px 20px;
  }
  
  .nav__links li a {
    transition: color 0.3s ease 0s;
    transition: .2s;
  }
  
  .nav__links li a:hover {
    color: var(--hover-color);
    transform: scale(2);
  }



  
  .cta {
    padding: 9px 25px;
    background-color:  #5865F2;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease 0s;
  }
  
  .cta:hover {
    background-color: #8d95ee;
  }
  
  
  /* Mobile Nav */
  
  .menu {
    display: none;
  }
  
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: width 0.5s ease 0s;
  }
  
  .overlay--active {
    width: 60%;
  }
  
  .overlay__content {
    background-color: #000000;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: color 0.3s ease 0s;
  }
  
  .overlay a:hover,
  .overlay a:focus {
    color: var(--hover-color);
  }
  .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
    z-index: 9999;
  }
  
  @media screen and (max-height: 450px) {
    .overlay a {
      font-size: 20px;
    }
    .overlay .close {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }
  
  @media only screen and (max-width: 800px) {
    .nav__links,
    .cta {
      display: none;
      color: #000000;
    }
    .menu {
      display: initial;
      background-color: white;
    }
  }

  @media screen and (min-width: 968px){
    :root{
      --biggest-font-size: 3rem;
      --h2-font-size: 1.75rem;
      --h3-font-size: 1.25rem;
      --normal-font-size: 1rem;
      --small-font-size: .875rem;
    }
  }
  
  /*========== BASE ==========*/
  *,::before,::after{
    box-sizing: border-box;
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  /*========== Variables Dark theme ==========*/
  body.dark-theme{
    --first-color-send: #161212;
    --title-color: #F3F1F1;
    --text-color: #D1C7C8;
    --body-color: #251D1E;
    --container-color: #302728;
  }
  
  /*========== Button Dark/Light ==========*/
  .change-theme{
    position: absolute;
    right: 1.5rem;
    top: 2.2rem;
    display: flex;
    color: var(--title-color);
    font-size: 2rem;
    cursor: pointer;
  }
  
  body{
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* background-color: var(--body-color); */
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(-45deg, #4d2b60, #000000, #4d2b60, #000000);
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
      height: 100vh;
  }
  
  @keyframes gradient {
      0% {
          background-position: 0% 50%;
      }
      50% {
          background-position: 100% 50%;
      }
      100% {
          background-position: 0% 50%;
      }
  }
  
  h1,h2,h3,ul,p{
    margin: 0;
  }
  
  h1,h2,h3{
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
  }
  
  ul{
    padding: 0;
    list-style: none;
  }
  
  a{
    text-decoration: none;
  }
  
  img{
    max-width: 100%;
    height: auto;
    background-color: transparent;
  }
  
  /*========== CLASS CSS ==========*/
  .section{
    padding: 4rem 0 2rem;
  }
  
  .section-title, .section-title-center{
    font-size: var(--h2-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: var(--mb-3);
  }
  
  /*========== LAYOUT ==========*/
  .l-main{
    overflow: hidden;
  }
  
  .bd-container{
    max-width: 968px;
    width: calc(100% - 3rem);
    margin-left: var(--mb-3);
    margin-right: var(--mb-3);
  }
  
  .bd-grid{
    display: grid;
    gap: 1.5rem;
  }
  
  .l-header{
    height: 90px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    /* background-color: var(--body-color); */
    background-color: #000000;
    display: inline-block;
  }

/* Show menu */
.show-menu{
    top: calc(var(--header-height) + 1rem);
  }
  
  /* Active menu link */
  .active-link{
    position: relative;
  }
  
  .active-link::before{
    content: '';
    position: absolute;
    bottom: -.75rem;
    left: 45%;
    width: 5px;
    height: 5px;
    background-color: var(--title-color);
    border-radius: 50%;
  }
  
  /* Change background header */
  .scroll-header{
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
  }
  
  /* Scroll top */
  .scrolltop{
    position: fixed;
    right: 1rem;
    bottom: -20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s;
    visibility: hidden;
  }
  
  .scrolltop:hover{
    background-color: var(--title-color);
  }
  
  .scrolltop__icon{
    font-size: 1.5rem;
    color: var(--body-color);
  }
  
  .show-scroll{
    visibility: visible;
    bottom: 1.5rem;
  }
  
  /*========== HOME ==========*/
  .home__container{
    row-gap: .5rem;
    margin-top: 110px;
  }
  
  
  .home__img{
    width: 280px;
    justify-self: center;
  }
  
  .home__title{
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-2);
  }
  
  .home__description{
    margin-bottom: var(--mb-3);
  }
  
  /*========== BUTTONS ==========*/
  .button{
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
  }
  
  .button:hover ,.buttonemail:hover {
    background-color: var(--hover-color);
  }
  
  .button-link{
    background: none;
    padding: 0;
    color: white;
  }
  
  .button-link:hover{
    background-color: transparent;
    /* color: var(--first-color-alt); */
    color: var(--hover-color);
  }

  .buttonemail {
    text-align: center;
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
    margin: 0 auto;
  }
  
  /*========== SHARE ==========*/
  .share__data{
    text-align: center;
    margin-top: 100px;
  }
  
  .share__description{
    margin-bottom: 30px;
  }
  
  .share__img{
    width: 280px;
    justify-self: center;
    background-color: transparent;
  }

  .share__img {
    /* background: transparent; */
    background-color: transparent;
  }
  
  /*========== DECORATION ==========*/
  .decoration__container{
    margin-top: 83px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .decoration__data{
    text-align: center;
    justify-content: space-between;
    padding: 5rem 3rem 2rem;
    background-color: var(--container-color);
    box-shadow: 0 2px 6px rgba(65,11,16,.15);
    border-radius: 1rem;
    -webkit-box-shadow: 0px 0px 2px 4px #f2e1f2;
    -moz-box-shadow: 0px 0px 2px 4px #f2e1f2;
    box-shadow: 0px 0px 2px 4px #f2e1f2; 
    top: 0;
    align-items: center;
  }
  
  .decoration__data:hover{
    /* box-shadow: 0 3px 12px rgba(65,11,16,.15); */
    top: 20px;
    cursor: pointer;
  }
  
  .decoration__img{
    width: 180px;
  }
  
  .decoration__title{
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
  }
  
  /*========== ACCESSORIES ==========*/
  .accessory__container{
    grid-template-columns: repeat(2,1fr);
    margin-top: 83px;
    padding-bottom: 2rem;
  }
  
  .accessory__content{
    position: relative;
    display: grid;
    padding: .25rem .75rem .75rem;
    background-color: var(--container-color);
    box-shadow: 0 2px 6px rgba(65,11,16,.15);
    border-radius: 1rem;
    -webkit-box-shadow: 0px 0px 3px 5px #f2e1f2;
    -moz-box-shadow: 0px 0px 3px 5px #f2e1f2;
    box-shadow: 0px 0px 3px 5px #f2e1f2; 
  }
  
  .accessory__content:hover{
    /* box-shadow: 0 3px 12px rgba(65,11,16,.15); */
  }
  
  .accessory__img{
    width: 110px;
    justify-self: center;
    margin-bottom: .25rem;
  }
  
  .accessory__title, .accessory__category{
    text-align: center;
  }
  
  .accessory__title{
    font-size: var(--normal-font-size);
  }
  
  .accessory__category{
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1);
    color: var(--text-color-light);
  }
  
  .accessory__preci{
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
  }
  
  .accessory__button{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    font-size: 1.25rem;
    padding: .5rem .625rem;
    border-radius: 1rem 0 1rem 0;
  }
  
  /*========== SEND GIFT ==========*/
  .send{
    background-color: var(--container-color);
  }
  
  .send__title, .send__description{
    color: #fff;
  }
  
  .send__description{
    text-align: center;
    margin-bottom: var(--mb-4);
  }
  
  .send__direction{
    display: flex;
    justify-content: space-between;
    background-color: var(--hover-color);
    padding: .5rem;
    border-radius: .5rem;
  }
  
  .send__input{
    width: 70%;
    outline: none;
    border: none;
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
  }
  
  .send__input::placeholder{
    font-family: var(--body-font);
  }
  
  .send__img{
    width: 280px;
    justify-self: center;
  }
  
  /*========== FOOTER ==========*/
  .footer__container{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .footer__logo{
    color: var(--title-color);
  }
  
  .footer__title{
    margin-bottom: var(--mb-2);
  }
  
  .footer__logo, .footer__title{
    font-size: var(--h3-font-size);
  }
  
  .footer__link{
    display: inline-block;
    margin-bottom: .75rem;
    color: var(--text-color);
    transition: .2s;
  }
  
  .footer__link:hover{
    color: var(--hover-color);
  }
  
  .footer__social{
    font-size: 1.5rem;
    color: var(--title-color);
    margin-right: var(--mb-3);
  }
  
  .footer__social:hover{
    color: var(--hover-color);
    transition: .2s;
  }
  
  .footer__copy{
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-top: 4rem;
  }

  .fa-solid, .fas {
    justify-content: center;
    margin: 0 auto;
    position: relative;
    font-size: 300px;
    top: 20px;
  }

  .fa-network-wired {
    font-size: 150px;
    position: relative;
    margin-bottom: 50px;
  }
  
  .fa-file-code {
    font-size: 150px;
    position: relative;
    margin-bottom: 50px;
  }

  .fa-browser {
    font-size: 150px;
    position: relative;
    margin-bottom: 50px;
  }

  .fa-window-restore {
    font-size: 150px;
    position: relative;
    margin-bottom: 50px;
  }

  .fa-box {
    font-size: 200px;
    position: relative;
    margin-bottom: 50px;
  }

  /*========== MEDIA QUERIES ==========*/
  
  /* For full-screen images on small screens */
  @media screen and (max-width: 359px){
    .home__img,
    .share__img,
    .send__img{
      width: 100%;
    }
  }
  
  @media screen and (min-width: 576px){
    .home__container,
    .share__container,
    .send__container{
      grid-template-columns: repeat(2,1fr);
      align-items: center;
    }
  
    .home__container{
      padding: 5rem 0 0;
    }
  
    .home__img{
      order: 1;
    }
  
    .section-title-center,
    .share__data,
    .send__description{
      text-align: initial;
    }
  
    .home__img,
    .share__img,
    .send__img{
      width: 100%;
    }
    
    .share__img{
      order: -1;
    }
  }
  
  @media screen and (min-width: 768px){
    body{
      margin: 0;
    }
  
    .section{
      padding-top: 7rem;
    }
  
    .nav{
      height: calc(var(--header-height) + 1.5rem);
    }
  
    .nav__list{
      display: flex;
      align-items: center;
      margin-top: 20px;
    }
  
    .nav__item{
      margin-left: var(--mb-5);
      margin-bottom: 0;
    }
  
    .nav__toggle{
      display: none;
    }
  
    .change-theme{
      position: initial;
      margin-left: var(--mb-4);
    }
  
    .home__container{
      padding: 7rem 2rem 0;
    }
  
    .share__container{
      padding: 0 2rem;
    }
  
    .accessory__container{
      grid-template-columns: repeat(3,224px);
      justify-content: center;
    }
  
    .accessory__content{
      padding: .5rem 1.5rem 1.5rem;
    }
  
    .accessory__img{
      width: 120px;
      margin-bottom: var(--mb-1);
    }
  
    .accessory__title, .accessory__category{
      text-align: initial;
    }
  
    .accessory__button{
      padding: .75rem;
    }
  
    .send{
      background: none;
    }
  
    .send__container{
      /* background-color: var(--first-color-send); */
      background-color: var(--container-color);
      padding: 2rem;
      border-radius: 1.5rem;
    }
  }
  
  @media screen and (min-width: 968px){
    .bd-container{
      /* margin-left: auto; */
      /* margin-right: auto; */
      margin: 0 auto;
      margin-top: 150px;
    }
  
    .home__img,
    .share__img,
    .send__img{
      width: 469px;
    }

    .home__img {
      margin-left: 100px;
    }

    .home__data {
      width: 500px;
      max-width: 500px;
      margin-left: -100px;
    }
  
    .home__container,
    .share__container,
    .send__container{
      column-gap: 5rem;
    }
  }

