body {
  background: #B9603E url("https://64.media.tumblr.com/852eb7af8f3e6a59ce704a1bba602a9e/c2596f4b457611b1-db/s2048x3072/f6c615ac51e0325f912ff71bdafa9518062af851.pnj"); /*Replace with your own background image.*/
  background-size: cover;
	background-attachment: fixed;
  background-position:center;
	background-size: cover;
	color: white;
	font-size: 13.5px;
	font-family: "Open Sans", sans-serif;
  }
  
a {
  color: #C3953D;
  }
  
a:hover {
  color: #5DB6B8;
  }
  
.links {
  border-top: 1px solid #c3953d;
  background: rgb(238, 238, 238, 0.05);
  padding-left: 25px;
  padding-right: 25px;
  list-style-type:none;
  text-align: center;
  }
  
/*For the first link in the links bar*/
.link-first {
  display: inline-block;
  border-right: 1px solid #c3953d;
  padding: 2px;
  padding-right: 11px;
  padding-bottom: 15px;
  padding-top: 10px;
  text-align: center;
  }
  
.link {
  display: inline-block;
  border-right: 1px solid #c3953d;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 15px;
  padding-top: 10px;
  text-align: center;
  }
  
/*For the last link in the links bar*/
.link-last {
  display: inline-block;
  padding: 2px;
  padding-left: 9px;
  padding-bottom: 15px;
  padding-top: 10px;
  text-align: center;
  }
/* THIS CHANGES THE BOX COLOR!! */
.main {
  margin: 0 auto;
  width: 500px;
  background: rgb(77, 40, 25, 0.75 );
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  /*Quick guide to box-shadow:
    First two numbers are vertical and horizontal offset.
    Third number is how far to spread the fuzzy effect.
    Fourth number is how much solid border/shadow there should be before the fuzzy effect begins.
  */
  box-shadow: 0px 0px 30px 4px #B9603E;
  }

.main-inner {
  padding: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  }
  
/*Prevent image overflow*/  
.main img {
  max-width: 100%;
  height: auto;
  }
  
.footer {
  margin: 0 auto;
  padding: 15px;
  padding-top: 0px;
  margin-top: -20px;
  text-align: center;
  font-size: 12px;
  }

/*Mobile compatibility*/
@media(orientation: portrait) {
    .main {
      width: 80%;
      }
  }