/* 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." */
html {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #000000;
}

body {
  width: 600px;
  margin: 10px auto;
  background-color: #000000;
  padding: 20px 20px 20px 20px;
  border: 5px solid #ff88dd;
}




h1 {
  margin: 0;
  background-color: #ffffff;
  font-size: 45px;
  text-align: center;
  font-family: "Bowlby One SC", sans-serif;
  text-shadow: 5px 5px 2px #19b7c5;
}

h2 {
  background-color: #ffffff;
  font-size: 30px;
  text-align: center;
  font-family: "Bowlby One SC", sans-serif;
  text-shadow: 5px 5px 2px #ff21ff;
}


p, ul {
  background-color: #ffffff;
  color: black;
  /*width: 800px;*/
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
}


img {
  background-color: #ffffff;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

span {
  background-color: #ffffff;
  color: black;
  /*width: 800px;*/
  font-size: 18px;
  text-shadow: 0px 0px 10px #00FFFE;
  
}



.content-box {
  background-color: #ffffff;
  border: 0px solid #00FFFE;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
}

.rounded {
  border-radius: 24px;
  border: 6px solid #FF17FF;
}

@media (max-width: 600px) {
  body {
    font-size: 22px;
  
  }
  p, ul, span {
       font-size: 1.3em;
    line-height: 1.4; 
  
  }
  
h1, h2 {
  font-size: 1.8em;
}
  
}
