html, body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 10px;
  padding: 0px;
  font-family: 'Open Sans', sans-serif;
/* background: linear-gradient(to bottom, rgba(231, 240, 245, 1) 0%, rgba(170, 221, 235, 1) 100%);*/

}

.name {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2px;
  text-align: center;
  justify-content: center;
  align-items: center;

}
.job {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 2px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.wrapper {
/*  background-color: lightpink;*/
  
  max-width: 100%;
  display: flex;
  flex-direction: row;
  height: 80%;
}

.outerwrap {
/*  background-color: lightpink;*/
  
  max-width: 100%;
  display: flex;
  flex-direction: column;
  height: 80%;
}

.newslist{
  margin: 10px 0;
}

.right {
/*  background-color: lightblue;*/
  margin: 20px;
  max-width: 60%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left {
 background: linear-gradient(to top, lightgrey 0%, whitesmoke 100%);

  align-items: center;
  justify-content: center;
  margin: 20px;
  max-width: 30%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bottom {
/*    background-color: lightblue;*/
  align-items: left;
  justify-content: left;
    margin: 20px;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.profile-picture {
  border-radius: 50%;
}

.social-links {
/*  background-color: lightgrey;*/
  list-style: none;
  padding-left: 30px;
  font-size: 18px;
}

.social-links li {
  display: inline-block;
  margin-right: 8px;
}

.social-links a {
  text-decoration: none;
  padding: 4px;
}

.social-links a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}


