/* Three image containers (use 25% for four, and 50% for two, etc) */
@font-face {
    font-family: circular;
    src: url(circular.ttf);
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

/* Style the header with a grey background and some padding */
.header {
    overflow: hidden;
    background-color: #121212;
    padding: 10px 10px;
  }
  
  /* Style the header links */
  .btn {
    width: 133px;
    height:32px;
    float: left;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: 'circular';
    font-size: 15px;
    line-height: 25px;
    border-radius: 50px;
    background-color: rgb(54, 54, 54);
    margin: 10px;
  }
  
  i {
    float:left;
    padding: 5px;
  }
  /* Float the link section to the right */
  .header-right {
    float: right;
  }
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }

*{
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'circular';
}

body{
    width: 79%;
    display: block;
    float: right;
    background-color: #121212;
    padding-left: 10px;
}

.wrapper .sidebar{
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    width:18%;
    height: 100%;
    padding: 20px 0;
    transition: all 0.5s ease;
}

.wrapper .sidebar .logo{
    margin-bottom: 70px;
    text-align: center;
}

.wrapper .sidebar .logo img{
    display: block;
    float: left;
    height: 40px;
    margin-left: 20px;
    margin-top: 2px;
}

.wrapper .sidebar ul li a{
    display: block;
    padding: 13px 30px;
    color: #B3B3B3;
    font-size: 16px;
    position: relative;
}

.wrapper .sidebar ul li a .icon{
    color: #B3B3B3;
    width: 30px;
    display: inline-block;
}

.wrapper .sidebar ul li a:hover {
    color: white;
}

.wrapper .sidebar ul li a:hover .icon,
.wrapper .sidebar ul li a.active .icon{
    color: white;
}

.wrapper .sidebar ul li a:hover:before,
.wrapper .sidebar ul li a.active:before{
    display: block;
}

h1 {
    margin-top: 20px;
    text-align: left;
    color: white;
    font-family: 'circular';
    font-size: 32px;
    margin-bottom: 5px;
}

h2 {
    color: white;
}

h3 {
    color: white;
}
p {
    color: #B3B3B3;
    margin-right: 60px;
    font-weight: 0.5;
    line-height: 1.8;
    font-size: 14px;
}
embed {
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}

.name {
    color: white;
    font-style: italic;
}

.column {
    flex: 40%;
    padding: 5px;
}
.row {
    display: flex;
}
.tableau-center1 {
    width: 875px;
    margin-left: auto;
    margin-right: auto;
}
