/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.gg{
  margin-top: 0%;
}
body{
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#fdffff 50%, #fdffff 50%);
}
::selection{
  color: rgb(231, 198, 198);
  background: #754bef;
}
.wrapper{
  display: flex;
  flex-wrap: wrap;
  background: rgb(0, 0, 0);
  padding: 30px 40px;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  box-shadow: 0 0 20px 0 rgba(17, 1, 1, 0.1);
}

.pk{
  background-color: #754bef;
  color: #fdffff;
  height:30px;
  border-radius: 10px;
  margin-bottom: -600px;
  margin-left: -50px;
  
}
.pk:hover{
  background-color: rgb(8, 8, 8);
  color: rgb(45, 2, 70);
  box-shadow: 10px 10px 0.15px rgba(0, 0, 0, 0.15)
  
}
.wrapper h2{
  color: #675AFE;
  font-size: 46px;
}
.wrapper .logos{
  margin-left: 15px;
}
.logos img{
  opacity: 0.3;
  margin: 0 7px;
  transition: opacity 0.4s ease;
}
.logos img:last-child{
  margin-right: 0px;
}
