@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,900&display=swap');

body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(11deg, rgba(54,27,69,1) 0%, rgba(13,16,26,1) 54%);
  height: 100vh;
  width: 100vw;
}

span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  color: #ba28ff;
  font-size: 124px;
  letter-spacing: 8px;
  cursor: pointer;
}

span::before {
  content: "SkinChange.";
  position: absolute;
  color: transparent;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 2px,
    white 2px,
    white 4px
  );
  -webkit-background-clip: text;
  top: 0px;
  left: 0;
  z-index: -1;
  transition: 1s;
}

span::after {
  content: "SkinChange.";
  position: absolute;
  color: transparent;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 2px,
    white 2px,
    white 4px
  );
  -webkit-background-clip: text;
  top: 0px;
  left: 0px;
  transition: 1s;
}

span:hover:before {
  top: 10px;
  left: 10px;
}

span:hover:after {
  top: -10px;
  left: -10px;
} 
.container{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.soon{
    margin-top: 200px;
    font-size: 26px;
    color: aliceblue;
}
@media (max-width: 1000px) {
    span{
        font-size: 100px;
    }
    .soon{
        font-size: 22px;
    }
}
@media (max-width: 830px) {
    span{
        font-size: 80px;
    }
    .soon{
        font-size: 18px;
        margin-top: 150px;
    }
}
@media (max-width: 660px) {
    span{
        font-size: 60px;
    }
    .soon{
        font-size: 14px;
        margin-top: 100px;
    }
}
@media (max-width: 520px) {
    span{
        font-size: 40px;
    }
    .soon{
        font-size: 10px;
    }
}
@media (max-width: 350px) {
    span{
        font-size: 30px;
    }
    .soon{
        font-size: 12px;
    }
}