@import url("https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@700&family=Cinzel+Decorative&family=Cuprum&display=swap");
* {
  box-sizing: border-box;
  transform-style: preserve-3d;
  margin: 0;
  padding: 0;
  user-select: none; 
}
@property --swing-x {
  initial-value: 0;
  inherits: false;
  syntax: '<integer>';
}
@property --swing-y {
  initial-value: 0;
  inherits: false;
  syntax: '<integer>';
}
body {
  min-width:  100vw;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  font-family: 'Roboto', sans-serif;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #737373;
  color: #fafafa;
}
h1 {
  text-transform: uppercase;
  animation: swing 2s infinite alternate ease-in-out;
  font-size: 12em;
  font-family: 'Cuprum', sans-serif;
  margin: 0;
  margin-bottom: 1rem;
  letter-spacing: 2rem;
  transform: translate3d(0, 0, 0vmin);
  --x: calc(50% + (var(--swing-x) * 0.5) * 1%);
  background: radial-gradient(var(--lit-header), var(--header) 45%) var(--x) 100%/200% 200%;
  -webkit-background-clip: text;
  color: #212121;
}
h1:after {
  animation: swing 2s infinite alternate ease-in-out;
  content: "STR";
  position: absolute;
  top: 0;
  left: 0;
  color: black;
  filter: blur(1.5vmin);
  transform: scale(1.05) translate3d(0, 12%, -10vmin) translate(calc((var(--swing-x, 0) * 0.05) * 1%), calc((var(--swing-y) * 0.05) * 1%));

}
.name {
  animation: swing 2s infinite alternate-reverse ease-in-out;
  height: 100%;
  width: 100%;
  transform-origin: 50% 30%;
  transform: rotate(calc(var(--swing-x) * -0.25deg));
  background: radial-gradient(30% 30% at 50% 42%, transparent, #000 35%);
}
.name__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.name__container {
  height: 250vmax;
  width: 250vmax;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.info {
  margin: 1em;
  text-align: center;
/*line-height 1.5*/
  font-family: 'Cuprum', sans-serif;
}
.info > .h2 {
  font-size: 2em;
  letter-spacing: 0.5em;
  margin-bottom: 2em;
  color: #808080;
}
.info > p {
  font-size: 1.5em;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  color: #666;
}
@media (max-width: 640px) {
  h1 {
    font-size: 7em;
  }
  .info > .h2 {
    font-size: 1.5em;
  }
  .info > p {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .info > .h2 {
    font-size: 1em;
  }
  .info > p {
    font-size: 0.9em;
  }
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
a button {
  font-family: 'Cuprum', sans-serif;
  font-size: 2em;
  padding: 0 0.2em 0.1em;
  cursor: pointer;
}
a button:hover {
  color: #000;
  transition: 0.3s;
}
@keyframes swing {
  0% {
    --swing-x: -100;
    --swing-y: -100;
  }
  50% {
    --swing-y: 0;
  }
  100% {
    --swing-y: -100;
    --swing-x: 100;
  }
}
 
.__icons {
  width: 40vw;
  margin: 50px 0 0 0;
  display: flex;
  justify-content: space-around;
}

.__icon img{
  width: 30px;
  height: 30px;
  filter: grayscale(1);
  cursor: pointer;
}

.__icon img:hover{
  filter: grayscale(.3);
}


.link {
  color: #E8E8E8FF;
  text-decoration: none;
}

