a {
  cursor: pointer;
}

body {
  background-color: dimgray;
}



.wrapper-main {
  width: 80vh;
  margin: 0 auto;
}


.wrapper-main header {
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.header-main-logo {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-main-logo img {
  width: 200px;
}

.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: 75%;
  background-color: white;
}

.wrapper-main main section img {
  width: 100%;
  justify-self: center;
}

.wrapper-main main section a {
  text-decoration: underline darkslategrey;
}

.wrapper-main main section a:hover {
  font-style: italic;
}

.wrapper-main main section h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: darkslategrey;
  margin-top: 10px;
  margin-bottom: 5px;
}


.wrapper-main main section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: darkslategrey;
  margin-bottom: 2px;
}

.wrapper-main main section h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: darkslategray;
}

.wrapper-main main section p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: black;
}

.wrapper-main main section p bold {
  font-weight: bold;
}

.wrapper-main main section p i {
  font-style: italic;
}

.caption {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: black;
  width: 100%;
  text-align: center;
  font-style: italic;
  margin-top: 5px;
  margin-bottom: 5px;
}

.wrapper-main main aside{
  width: 20%;
  background-color: gray;
}

.wrapper-main main nav {
  display: flex;
  flex-direction: column;
  margin-top: 2px;
  margin-left: 5px;
}

.wrapper-main main nav ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: white;
  display: block;
  width: 100%;
  margin-bottom: 2px;
}

.wrapper-main main nav ul li a:hover {
  background-color: black;
}

.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;
}

.footer {
  width: 80vh;
  height: fit-content;
  display: flex;
  background-color: dimgray;
  justify-content: center;
}

.footer div a img {
  height: 150px;
}
.footer div ul li a img {
  height: 50px;
  margin: 5px 5px;
}

.copyright p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: white;
  width: 100%;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}