@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@1&family=Poltawski+Nowy&family=Righteous&family=Signika+Negative&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

header{  
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: transparent;
    opacity: 10000;
    backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body{
  height: 20000rem;
  background: rgb(5,104,235);
  background: linear-gradient(90deg, rgba(5,104,235,1) 10%, rgba(129,2,185,1) 100%);
}
.logo{
  font-family: 'Righteous', 'cursive';
  font-size: 25px;
  font-weight: 700;
  color: linear-gradient(10deg, rgb(7, 5, 5) 0%, rgb(255, 255, 255) 100%);
  margin-top: -80px;
  width: 40rem;
  height: auto;
  
}
#menu-icon{
  color: white;
  font-size: 35px;
  z-index: 1001;
  cursor: pointer;
  display: none;
}
.logopng{
  width: 90px;
  margin-top: -10px;
  position: absolute;
  left: 50px;
}
.photo{
  height: auto;
}
.menu {
  margin-top: -80px;
  margin-right: 55px;
  padding: 80px 0px;
  padding-bottom: 10px;
  font-family: 'Open Sans Condensed', sans-serif;
}
.menu-1{
  background: transparent;
   display: flex;
}

.menu ul{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu li{
  display: inline-block;
  margin: 0 15px;
}
.menu a{
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  
  position: relative;
  padding: 4px 0;
}
.menu a::before{
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.5s transform ease;
  transform: scale3d(0,1,1);
  transform-origin: 0 50%;
}
.menu a:hover::before{
  transform: scale3d(1,1,1);
}
.menu-1 a::before{
  background: #ffffff;
  transform-origin: 100% 50%;
}
.menu-1 a:hover::before{
  transform-origin: 0 50%;
}

/*Launchpad-main*/
.resim-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.launchpad-text {
  font-size: 200px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Lobster', cursive;
  background: -webkit-linear-gradient(#fffdfd, #7a7a7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 7px;
}
.launchpad-text2 {
  font-size: 200px;
  z-index: 1;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Lobster', cursive;
  background: -webkit-linear-gradient(#7a7a7a, #fffdfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 7px;
}

.div-line {
  position: absolute;
  top: 1000px;
  left: 130px;
  right: 130px;
  border-top: 2px #ffffff solid;
  
}



/*Cards*/
.platform-cards {
  padding-top: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card {
  width: 300px;
  height: 200px;
  background-color: #4158D0;
  border-radius: 8px;
  color: white;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  margin: 10px;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover {
  transform: rotateY(10deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 1;
}

.card:hover:before {
  transform: translateX(-100%);
}

.card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 1;
}

.card:hover:after {
  transform: translateX(100%);
}

  
  
  
  
  
  

/*Footer*/
.footer-distributed {
  background-color: rgba(0, 0, 0, 0.205);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}

.footer-distributed .footer-left p {
  color: #8f9296;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: rgba(68, 65, 65, 0.897);
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition:all .25s;
}

.footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}

/* Media Queries */

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}
.space{
  height: 150px;
  
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}
.space{
  height: 200px;
  
}

@media (max-width: 1535px){
  header{
    padding: 15px 3%;
    transition: .2s;
  }
  .resim-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .launchpad-text {
    font-size: 240px;
    top: 40%;
    letter-spacing: 5px;
  }
  .launchpad-text2 {
    font-size: 240px;
    top: 60%;
    letter-spacing: 5px;
  }
  .div-line {
    display: none;
    
  }
}
@media (max-width: 1460px){
section{
  padding: 0 12%;
  transition: .2s;
}
.resim-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.launchpad-text {
  font-size: 220px;
  top: 40%;
  letter-spacing: 4px;
}
.launchpad-text {
  font-size: 220px;
  top: 60%;
  letter-spacing: 4px;
}
}
@media (max-width: 1340px){

.resim-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 700px;
  width: 700px;
}

.launchpad-text {
  font-size: 200px;
  top: 40%;
  letter-spacing: 3px;
}
.launchpad-text2 {
  font-size: 200px;
  top: 60%;
  letter-spacing: 3px;
}

}
@media (max-width: 1195px){
.resim-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.launchpad-text {
  font-size: 180px;
  top: 40%;
  letter-spacing: 2px;
}
.launchpad-text2 {
  font-size: 180px;
  top: 60%;
  letter-spacing: 2px;
}
}
@media (max-width: 990px){
#menu-icon{
  display: block;

}
.logopng{
  position: absolute;
  top: 10px;
  left:10px;
}
.menu-1 {
  position: absolute;
  top: 100%;
  right: -100%;
  background-color: #393e46;
  width: 300px;
  height: 50vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 50px 20px;
  transition: all .55s ease;
  margin-right: 0;
}
.menu li{
  margin-left: 0;
  display: block;
  margin: 25px 0;
}
.menu.open{
  right: 0;
}
.resim-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.launchpad-text {
  font-size: 150px;
  top: 45%;
  letter-spacing: 1px;
}
.launchpad-text2 {
  font-size: 150px;
  top: 60%;
  letter-spacing: 1px;
}
}
@media (max-width: 768px) {
  .resim-container {
  position: absolute;

    width: 80%;
    
    height: auto;
  }

  .launchpad-text {
    font-size: 130px;
    top: 50%;
    letter-spacing: 1px;
  }
  .launchpad-text2 {
    font-size: 130px;
    top: 65%;
    letter-spacing: 1px;
  }

}
@media (max-width: 575px){
  .resim-container {
    
    position: absolute;
    width: 80%;
    height: auto;
  }
  .launchpad-text {
    font-size: 80px;
    top: 45%;
    letter-spacing: 1px;
  }
  .launchpad-text2 {
    font-size: 80px;
    top: 55%;
    letter-spacing: 1px;
  }
  
}
@media (max-width: 370px){

  .launchpad-text {
    font-size: 50px;
    top: 48%;
    letter-spacing: 1px;
  }
  .launchpad-text2 {
    font-size: 50px;
    top: 54%;
    letter-spacing: 1px;
  }
} 





























