/* 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: #14daeb; */
  color: #193161;
  background-image: url("/websitewip.png");
  background-repeat: repeat;
  background-size: auto;
  font-family: "stint ultra expanded", arial, helvetica, sans-serif;
  margin: 20px;
}


p {
  text-align: center;
  background-color: #7DA8FF;
  
  border-style: solid;
  border-width: 5px;
  
  /* border-left-width: 5px;
  border-right-width: 5px; */
  border-color: #3262C2;
  
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  
  padding: 3px 5px;
  
  /* height: -10px;

  margin: 150px; */
  
  /* height: -50px; */
  
  /* margin-top: 50px;
  /* margin-bottom: 50px;
  /* margin-left: 200px;
  /* margin-right: 200px; */

}

h1 {
  font-family: "stint ultra expanded", arial, helvetica, sans-serif;
  text-align: center;
  color: #193161;
  background-color: #7DA8FF;
  border-style: solid;
  border-width: 7px;
  /* border-left-width: 5px;
  border-right-width: 5px; */
  border-color: #3262C2;
  
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding: 5px 25px;
  
}
  
img {
  max-width: 100%;
  height: auto;
  
  /* padding: 5px; */
  color: #193161;
  background-color: #7DA8FF;
  /* border-style: solid;
  /* border-width: 5px;
  border-color: #3262C2; */
  
}
  

.flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: stretch;
  
  height: auto;
  width: auto;
  
  /* margin: 50px; */
  gap: 10px;
  
} 

.flex img {
  width: 100%;
  height: auto;
  display: table-caption;
  object-fit: cover;
  /* cursor: pointer; */
  
}


 /* unvisited link */
a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: purple;
}

/* mouse over link */
a:hover {
  color: pink;
}

/* selected link */
a:active {
  color: green;
} 

strong {
  font-style:normal;
}