
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    font-family: poppins;
    -webkit-animation-timing-function: ease; /* Chrome, Safari, Opera */
    animation-timing-function: ease;
    transition: all 0.3s ease 0s;
    scroll-behavior: smooth;
}

::-moz-selection { /* Code for Firefox */
  background: #7F7FD5;  /* fallback for old browsers */
}

::selection {
  background: #7F7FD5;  /* fallback for old browsers */

}

body {
    background-color: #111111;

}

header {
    background-color: #0c0c0c;
    color: #fff;
    padding: 10px;
    margin: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 10px rgb(12, 12, 12);
    border-radius: 15px;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 0.4%;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.637);
  }

  .logo span.version {
    color: gray;
    font-size: 12px;
    text-shadow: 0 0 0px rgba(255, 255, 255, 0);
  }
  
  nav {
    margin: auto;
    text-align: center;
    
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin-right: 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px;
  }

  nav ul li a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.76);
 
  }
  
  @media screen and (max-width: 545px) {
    .logo span.version {
      visibility: hidden;
    }

    .logo {
      margin-top: 7%; 
      margin-left: 1%;

    }

    .download-button {
      margin-bottom: -20%;
    }
  }

  .download-button {
    background: #7F7FD5;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
     /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(82, 82, 82);
    margin-right: 0.4%;
    margin-top: 0.1%;
    margin-bottom: 0.1%;
  }
  
  .download-button:hover {

    
    border-radius: 25px;
    animation: jitter 1s infinite;

  }


  .title h1 {
    display: block;
    color: white;
    text-shadow: 0 0 10px #ffffff83;
    padding-top: 15%;
    padding-left: 2%;
    font-size: 250%;
    
  }

  title {
    display: block;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 65vh;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    padding: 0 50px;
}
  
.title h1 span {
  background: #7F7FD5;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  text-shadow: 0 0 10px #86A8E7;
}

img {
  overflow-clip-margin: content-box;
    overflow: clip;
    width: 1000px;
    float: right;
}

.title p {
  padding-left: 2%;
  color: whitesmoke;
  font-size: 18px;
  transform: translateY(-20px);
}

  @keyframes jitter {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
      transform: translate3d(1px, 0, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(-3px, 0, 0);
    }
  
    40%, 60% {
      transform: translate3d(3px, 0, 0);
    }
}

  
