/* 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." */
   
.comic-neue-light {
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: normal;
}

.comic-neue-regular {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: normal;
}

.comic-neue-bold {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: normal;
}

.comic-neue-light-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: italic;
}

.comic-neue-regular-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  font-style: italic;
}

.comic-neue-bold-italic {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: italic;
}

.footer {
  display: flex;
  flex-direction: row;
  background-color: #280a06ff;
  color: #f9f9f9;
  font-size: 12px;
  font-family: 'Arial', sans-serif;
  text-align: left;
}

.fcolumn1 {
  margin: 28px 0px 0px 56px;
  padding-right: 20px;
  width: 15%;
}

.fcolumn2 {
  margin: 28px 0px 0px 0px;
  padding-right: 10px;
  width: 20%;
  line-height: 1.5;
}

.fcolumn3 {
  margin: 28px 0px 0px 0px;
  padding-right: 20px;
  width: 20%;
  line-height: 1.5;
}

.fcolumn4 {
  margin: 28px 56px 56px 0px;
  width: 45%;

}

a.footerlink:link {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  color: #F9F9F9;
}

a.footerlink:hover {
  text-decoration-style: solid;
}

a.footerlink:visited {
  color: #F9F9F9;
}

a.footerlink:active {
  color: #F9F9F9;
}

html {
  background-image: url('bgimg.png'); 
}

body {
  background-color: white;
  color: #434343;
  font-family: 'Arial', sans-serif;
  margin-left:18%;
  margin-right:18%;

}

@media screen and (max-width: 760px) {
  body {
  margin-left:5%;
  margin-right:5%;
  }
  
  .footer {
  flex-direction: column;
  text-align: center;
  align-items: center;
  }
  
  .fcolumn1 {
  margin: 28px 0px 0px 0px;
  padding-right: 0px;
  width: 80%;
  }
  
  .fcolumn2 {
  margin: 35px 0px 0px 0px;
  padding-right: 0px;
  width: 80%;
  }

  .fcolumn3 {
  margin: 25px 0px 0px 0px;
  padding-right: 0px;
  width: 80%;
  }
  
  .fcolumn4 {
  margin: 35px 0px 56px 0px;
  width: 80%;
  }
}

h1 {
  color: #960027;
  font-family: 'Comic Neue', sans-serif;
}