a {
  cursor: pointer;
}

body {
  background-image: url(../img/darkbrickbackground.png);
  background: size 100px;
  background-repeat: repeat;
}


.wrapper-main {
  width: 80vh;
  margin: 0 auto;
}


.wrapper-main header {
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}



.header-main-logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-main-logo img {
  width: 500px;
}

.header-main-logo p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: antiquewhite;
}

.wrapper-main main {
  margin-top: 20px;
  margin-bottom: 20px;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.wrapper-main main section{
  width: 60%;
  background-color: lightgray;
}

.wrapper-main main section ul {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
}

.wrapper-main main section ul li {
  margin-top: 5px;
}

.wrapper-main main section ul li a:hover {
  text-decoration: underline dimgray;
}

.wrapper-main main section ul li h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: black;
  display: block;
  width: 100%;
}

.wrapper-main main section ul li h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: black;
}

.wrapper-main main aside{
  width: 30%;
  background-image: url(../img/ashybricks.png);
  background-size: 100%;
  background-repeat: repeat-y;
}

.wrapper-main main nav {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
}

.wrapper-main main nav ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: black;
  display: block;
  width: 100%;
}

.wrapper-main main nav ul li a h4 {
  font-size: 24px;
  font-weight: bold;
}

.wrapper-main main nav ul li a:hover {
  color: antiquewhite;
  background-color: gray;
}

.socialsnav {
  display: flex;
  flex-direction: row;
  margin-top: 2px;
  margin-left: 5px;
  }
  
  .socialsnav li {
    display: block;
    width: 30px;
    margin: 5px 5px;
    }
  
  .socialsnav li a img:hover {
    background-color: antiquewhite;
  }

  .copyright p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
  }