html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 20px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: Arial;
  text-align: center;
  background-color: black;
}

body {
  width: 1000px;
  margin: 0 auto;
  background-color: black;
  padding: 0 20px 20px 20px;
  border: 5px #bf0078;
}

a {text-decoration: none; color: #bf0078; }

p {
  color: white;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
}

li {
  color: white;
  font-size:20px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

/*Header Style, White with Red drop shadow.*/
h1 {
  color: white;
  font-size: 50px;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  text-shadow: 3px 3px 0px red;
}

h2 {
  color: white;
  font-size: 40px;
  text-align: center;
  margin: 0;
  padding: 5px 0;
  text-shadow: 1px 1px 0px red;
}

h3 {
  color: white;
  font-size: 30px;
  text-align: center;
  margin: 0;
  padding: 2px 0;
  text-shadow: 1px 1px 0px blue;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
}

/*Determines how the Galleries function.*/
.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/*Determines what thumbnails for images in galleries functions like.*/
.gallerythumb {
  object-fit: cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
  border-radius: 0px;
  justify-content: center;
  align-items: center;
}

/*Determines what 'myDiv' looks like; areas with myDiv outlines the section with a pink border and centers text.*/
.myDiv {
  background-color: black;
  text-align: center;
  justify-content: center;
}

.columns {
  margin: auto;
  padding-left: 0px;
  padding-right: 0px;
  float: none;
  column-count: 2;
  column-gap: 30px;