/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
 @property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate { /* so this is just an animation that rotates it from 0 deg to 360 ok hm */
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}



body {
  background: linear-gradient(var(--angle), #b566ff 0%, #5c5ef7 100%);
  color: black;
  font-family: Montserrat, sans-serif;
  animation: rotate 2s ease-in-out infinite;
  min-height: 100vh;
}

h1 {
  color: blue;
}


p {
 color: green;
 font-weight: 500;
}