/* 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-image:  url("celestial-background.jpeg");
  color: #89CFF0;
  font-family: Times;
  font-size: 18px;
}
ul {
   background-image: linear-gradient(#ffafbd, #6dd5ed, #32CD32);
   text-align:left;
   padding-top:20px;
   padding-right: 200px;
   padding-bottom:40px;
   padding-left: 200px;
   font-family: garamond;
   font-size:20px;
   color: #30313D;
}
p {
  color: #89CFF0;
  font-family: "comic sans ms";
  font-size: 18px;
}
announcement {
  top: 40%;
  left: 40%;
  color: black;
  background: linear-gradient(
            to right, #f32170, #ff6b08,
             #cf23cf, #eedd44);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "comic sans ms";
  font-weight: normal;
  font-size: 20px;
}
h1 {
  color: gold;
  font-family: Times;
  font-size; 20px;
}
img {
  display: inline-block;
}
.button {
  background-color: #635BFF;
  color: white;
  padding: 30px 42px;
  text-align: center;
  font-family: Times;
  text-decoration: italic;
  display: inline-block;
  font-size: 28px;
  margin: 4px 2px;
  cursor: pointer;
}
h2 {
  top: 40%;
  left: 40%;
  background: linear-gradient(
            to right, #f32170, #ff6b08,
             #cf23cf, #eedd44);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "comic sans ms";
  font-weight: normal;
  font-size: 16px;
}
