/* 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("/pics/bg.jpg");
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* link colors */
a.class1 {color:red;}
a.class1:link  {text-decoration: none; color: forestgreen;}
a.class1:visited {text-decoration: none; color: LightGoldenRodYellow ;}
a.class1:hover {text-decoration: underline; color: lightgreen;}
a.class1:active {text-decoration: none; color: forestgreen;}

/*fonts and colors */
p1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-shadow: 1px 1px 2px black;
  color: white;
  
}

p2 {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  text-shadow: 2px 2px 9px white;    /*horizonal, vertical, blur, color */
}

/* text boxes */
.custom-list-1 {
  text-align: left;
  background-color: rgba(255, 178, 102, 0.9);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 25px;
  max-width: 500px;
  display: grid;
  padding: 30px;
  margin: 10px;
  padding-left: 30px; 
  padding-right: 30px;
  border: 2px solid tomato;
}

.custom-list-2 {
  background-color: rgba(153, 255, 255, 0.9);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 25px;
  max-width: 500px;
  display: grid;
  padding: 10px;
  margin: 10px;
  padding-left: 30; 
  padding-right: 30;
  border: 2px solid grey;
}

.custom-list-3 {
  background-color: rgba(255, 153, 204, 0.9);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 25px;
  max-width: 100px;
  display: grid;
  padding: 8px;
  margin: 10px;
  padding-left: 10; 
  padding-right: 10;
  border: 2px solid rebeccapurple;
}

.custom-list-4 {
  background-color: rgba(255, 153, 204, 0.9);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 25px;
  max-width: 100px;
  display: grid;
  padding: 8px;
  margin: 10px;
  padding-left: 10; 
  padding-right: 10;
  border: 2px solid rebeccapurple;
}

.custom-list-5 {
  text-align: left;
  background-color: rgba(183, 220, 255, 0.8);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 25px;
  max-width: 500px;
  display: grid;
  padding: 30px;
  margin: 10px;
  padding-left: 30px; 
  padding-right: 30px;
  border: 2px solid DodgerBlue;
}