.rubik-moonrocks-regular {
    font-family: "Rubik Moonrocks", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .main-title {
    font-size: 6rem;
    color: white
  }

 .sub-title {
    font-size: 3rem;
 }

 .paragraph {
    font-size: 2rem;
    color:white;
 }

 .link {
    font-size: 4rem;
 }
  
  :root {
    --blue-rgb: 75 175 255;

    --light-blue-rgb: 112 240 255;
    --dark-blue-rgb: 5 6 141;
  }

  body {
    background-color: black;
    overflow: hidden;
  }

  *{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
  }

  @keyframes pan {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 0%;
    }
  }

  #app {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  #circle-container {
    background: radial-gradient(rgb(var(--light-blue-rgb)), rgb(var(--dark-blue-rgb)));
    height: 100%;  
  overflow: hidden;
  position: relative;
  }

  #circle-pattern {
    background-image: url(./circle\ pattern.svg);
    background-size: 5%;  
  position: absolute;
  left: 50%;
  top: 0px;
  translate: -50% 0%;
  z-index: 1;
  height: 100%;
  width: 100%;
  min-width: 1200px;
  opacity: 0.10;
  animation: pan 180s linear infinite;
  will-change: background-position;
  }

  #circle-gradient-overlay {
    background: radial-gradient(circle, transparent 75%, rgb(var(--dark-blue-rgb)));
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: 2;
  }

 