/* 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: steelblue;
  color: black;
  font-family: times;
}
table, th, th1, tp { 
   width: 60%;
   
   padding: 6%;
  color: black;
  font-family: times;
  text-align: center;

  margin-bottom: 20px;
  border-collapse: separate; /* CSS MAKES ME WANT TO KILL MYSELF */
    border-spacing: 10px;  
  
   background-color: #81BEEF;
 

}
marquee{
  background-color: #16234B;
  animation: blinker 1.5s linear infinite;
  font-size: 15px;
  color: #DBE7F0;
  border: 5px solid;
  border-color:  #81BEEF;
}
th{
  font-size: 50px;
  font-family: comic;
  font-weight: bold;
  background: linear-gradient(to bottom, steelblue 0%, powderblue 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px black;
}
table {
    border: 10px solid transparent; /* Required for border-image */
  padding: 15px;
  border-image: url(border.png) 30 round;;
}
