body {
  width: 100%;
  height: 110%;
  display: block;
  position: relative;

}

body::after {
  content: "";
  background: url(../imgs/bg.png);
  opacity: 0.75;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}

header {
  height: 120px;
  width: 1050px;
  text-align: center;
  font-family: Arial;
  background: url(../imgs/stone.png);
  color: gold;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 3px solid black;
  border-radius: 30px;
  text-shadow: 3px 3px 3px brown;
}

#skills {
  width: 450px;
  height: 250px;
  float: left;
  background: url(../imgs/skills.jpg);
  text-align: center;
  margin: 30px 10px 10px 150px;
  border: 3px solid black;
  border-radius: 30px;
}

#quests {
  float: right;
  width: 450px;
  height: 250px;
  margin: 30px 150px 10px 10px;
  background: url(../imgs/quests.jpg);
  text-align: center;
  border: 3px solid black;
  border-radius: 30px;
}

#money {
  float: left;
  clear: left;
  width: 450px;
  height: 250px;
  margin: 10px 10px 10px 150px;
  background: url(../imgs/money.jpg);
  text-align: center;
  border: 3px solid black;
  border-radius: 30px;
}

#memes {
  float: right;
  clear: right;
  width: 450px;
  height: 250px;
  margin: 10px 150px 10px 10px;
  background: url(../imgs/memes.jpg);
  text-align: center;
  border: 3px solid black;
  border-radius: 30px;
}


a {
  text-decoration: none;
}

a:visited {
  color: blue;
}


#memes a:hover {
  font-family: "Comic Sans MS";
}