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

body {
  background-color: #07020A;   /* nicer blue */
  color: white;
  font-family: Verdana;
  margin: 2rem;
  line-height: 1.6;
  text-align: center; /* this centers all text inside the body */
}

h1 {
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px 4px black;
  font-family: Georgia, serif;  /* Example of a different font */
  text-align: center; /* this centers all text inside the body */
}

ul {
  list-style: none; /* removes bullets */
  padding: 0;
}

li {
  margin: 0.5rem 0;
}

a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

a:hover {
  color: white;
}

.tiktok-container {
  max-width: 605px;        /* same as embed */
  margin: 0 auto;           /* centers the video */
  background-color: black;  /* change the “border”/space color */
  padding: 0;               /* remove extra padding if needed */
}
