/* 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("bg.jpg");
  background-size: cover;
   margin: auto ;
  max-width: 75em;
  font-family: "Georgia", "Romance A", sans-serif;
  color: white;
  line-height: 1.5;
  padding: 4em 1em;
  }
  

   
p {
  color: #EDE9BE;;
  justify-content: center;
  text-align: center;
  margin: auto 100px auto 100px;
  padding-top: 70px;
}

a:hover {
  color: #DCB87F;
  text-decoration: none;
  border-bottom-style: none;
  border:0!important;
}


  
h1 {
  color: #EDE9BE;
  justify-content: center;
  text-align: center;
  font-family: 'Romance A';
  src: "https://witchwenckie.neocities.org/RomanceA.ttf";
    font-weight: normal;
    font-style: normal;
  padding-top: 70px;
}

h2 {
  color: #EDE9BE;
  font-style: italic;
  justify-content: center;
  margin: auto;
  font-size: 20px;
  text-align: center;
}
  .header {
  background-color: #8F2950;
  text-align: center;
  padding: 20px;
}

 .column {
  background-color: #8F2950;
  float: left;
  width: 15.33%;
  padding: 8px ;
  align-items: center;
  align-self: center;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}
.about {
  background-color: #8F2950 ;
  text-align: center;
  padding: 20px;
  margin: 15 auto;
 }
 
img {  
 object-position: 15% 100%;

}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
  .column {
    width: 80%;
  }

}