* {
  color: white;
  font-family: "Space Mono", monospace;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center; 
  align-items: center;    
  height: 100dvh;
  flex-direction: column;
  text-align: center;
  background-image: radial-gradient(#ffffff 0.5px, transparent 0.5px);
  background-size: 23px 23px;
  background-color: #000000;
  background-attachment: fixed;
  animation: orbit 10s linear infinite;
  padding: 0 20px;
}

@keyframes orbit {
  0% { background-position: 0 0; }
  25% { background-position: 10px 10px; }
  50% { background-position: 0 20px; }
  75% { background-position: -10px 10px; }
  100% { background-position: 0 0; }
}

.textCont {
    animation: fadeIn 0.8s ease-in-out both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h1 {
  font-weight: 400;
  margin-bottom: 12px;
  font-size: 40px;
}

.byContainer {
  border: rgba(255, 255, 255, 0.3) solid 1px;
  background-color: black;
  padding: 11px 40px;
  border-radius: 38px;
  font-size: 16px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 32px;
  }
  .byContainer {
    font-size: 15px;
    padding: 10px 32px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  .byContainer {
    font-size: 14px;
    padding: 9px 28px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: clamp(29px, 5vw, 40px);
    line-height: 1.2;
  }
  .byContainer {
    font-size: clamp(17px, 2vw, 16px);
    padding: 8px 22px;
  }
}