.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: rgba(255,192,203,0.02);
  position: fixed;
  height: 100%;
  overflow: auto;
  text-align: center;
}
.sidebar img{
    display: block;
    left: 1px;
}

.sidebar a {
  display: block;
  color: gray;
  padding: 16px;
  text-decoration: none;
}

.sidebar a.active {
  background-color: rgba(80, 80, 80, 0.5);
  color: white;
}

.sidebar a:hover:not(.active) {
  background-color: rgba(254, 192, 206, 0.75);
  color: white;
}


/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
   #respon {display: flex;
    align-items: center;
    justify-content: space-around;}
    
    .sidebar img{
    max-width:45vw;
    height: auto;
    margin-left:25vw;
}
}


/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
    #respon {display: flex;
    align-items: center;
    justify-content: center;}
    
  
}
