/* 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." */

div {
  background-color: white;
  color: black;
  font-family: Sans-Serif;
}

#container-intro {
  overflow: scroll;
  overflow-x: hidden;
  height: 10em;
  padding: 1rem;
  border: 3px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
}