/* from line 2 all the way down to line 48 is the skeleton of your css */
html
{
  background: url("https://images.unsplash.com/photo-1542856391-010fb87dcfed?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#page-container
{
  margin: 3vw;
}
#title
{
  background-color: #FFFFFF;
  opacity: 0.65;
  color: black;
  text-align: center;
  margin-bottom: 10px;
  margin: 0vh 9vw;
  padding: 4vh;
  border-top-left-radius: 25%;
  border-top-right-radius: 25%;
}


#content
{
  background-color: #FFFFFF;
  opacity: 0.655;
  color: black;
  text-align: center;
  padding: 4vh;
  margin: 4vh 9vw;
  border-radius: 15%;
}

#bottom-content
{
  background-color: #FFFFFF;
  opacity: 0.65;
  text-align: center;
  padding: 2vh;
  margin: 4vh 8vw;
  border-bottom-right-radius: 25%;
  border-bottom-left-radius: 25%;
}

/* Everythign here is flare */

/* image properties for my character images */
.character
{
  width: 12vw;
  border: 2px black dashed;
  border-radius: 50%;
  margin: 1vw;
  opacity: 1;
}

/* this will trigger when you hover over the character images*/
.character:hover
{
  cursor: pointer;
  width: 12.2vw;
  transform: rotate(30deg);
}

/* this triggers when you click on the character images */

.character:active
{
  transform: rotate(180deg);
}

h2
{
  color: black;
  text-align: center;
  font-family: "Mate SC";
}

a, p {
  color: navy;
  font-family: Arial, sans-serif;
  text-decoration: none;
}

hr {
  background-color: rgb(255, 255, 255, 0.3);
  border: none;
  height: 1px;
  margin: 15px 0px;
}

/* this triggers when you hover over the link */
a:hover
{
  background-color: black;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.imagesrc a, p
{
  color: black;
  font-weight: 900;
}

/*when you hover over the link */
.imagesrc:hover a
{
  color:white;
  background-color: black;
  padding: 10px;
  margin: 5px;
}
  

footer
{
  margin: 100px;
}