body{
    display:flex;
    justify-content: center;
    font-family: OpenSans;
}


.interface{
    max-width:1080px;
    max-height:100%;
    background-color: #1A1A1E;
    border-radius:20px;
    padding:20px;
}

/*-----Fonts-----*/
@font-face {
  font-family: OpenSans;
  src: url(fonts/OpenSans.ttf);
}

/*-----Paragraph Text-----*/
p{
  color:white;
  font-size:14px;
}

/*-----Links-----*/
a{
  color:#7289da;
  font-weight:bold;
  text-decoration:none;
}

/*-----Headings-----*/
h2{
  color:white;
  text-align:center;
}

h3{
  color:white;
  margin:0px;
}

.activity h3{
  color:white;
  text-align:right;
  margin:0px;
}


/*-----Profile-----*/
.profile{
    background-color:#2C2D32;
    border-radius: 50px 50px 20px 20px;
    padding: 25px;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 -5px 20px 0 rgba(0, 0, 0, 0.19);
}

.profile-info img{
    border-radius: 100px;
    object-fit: cover;
    height: 200px;
    width: 200px;
    float: none;
    display: block;
    margin: auto;
}

.profile-info{
      text-align:center;
}

.about{
  text-align:justify;
  line-height:1.5;
}

.display-name{
  color:white;
}

/*-----Roles-----*/
.roles{
  font-family:opensans;
  margin-top:20px;
  margin-bottom:20px;
}

.roles button{
  color:white;
  font-weight:bold;
  background-color:transparent;
  border: 1px solid lightgrey;
  padding:8px;
  border-radius:40px;
  margin-top:10px;
  cursor:normal;
}

/*-----Connections-----*/
.connections h3{
  margin-bottom:10px;
}
.connections img{
  height:50px;
  width:50px;
  border: 2px solid lightgrey;
  border-radius:100%;
  margin-right:2px;
  margin-bottom:5px;
  transition: 0.3s;
}

.connections img:hover{
   transition: 0.3s;
   transform: scale(1.05);
}


/*-----Activity-----*/
.activity{
  background-color:#2C2D32;
  border-radius:20px;
  padding:20px;
  margin:20px;
  
}

.activity img{
    float: left;
    border-radius: 20px;
    object-fit: cover;
    height: 100px;
    width: 100px;
    margin-top: -7px;
}

.title{
  font-weight: bold;
  font-size:20px;
  text-align:right;
}

.subtitle{
    font-size: 16px;
    font-style: italic;
    margin-left: 10px;
    text-align: right;
    margin-top: 5px;
}

.date{
    text-align: right;
    margin: 0px;
  }
  

/*-----Credit-----*/

.credit{
  font-size:10px;
  color:white;
  text-align:center;
}


/*-----Columns-----*/
.column {
  float: left;
  padding:0px;
}

.left {
  width: 40%;
}

.right {
  width: 60%;
}