@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.sidebar {
  margin: 0;
  padding: 0;
  left: 0;
  width: 200px;
  background-color: #ffffff;
  position: fixed;
  height: 100%;
  overflow: auto;
}

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

.sidebar a.active {
    background-color: #5e4dff;
    color: white;
  }
  
  .sidebar a:hover:not(.active) {
    background-color: rgb(236, 236, 236);
   
  }
  
  #selam {
    margin-left: 200px;
    height: 100vh;
    left: 200px;
  }

  #selam object{
      width: 100%;
      height: 100vh;
  }

  #selam object.active1{
      visibility: visible;
      display: inline;
  }

 #selam object.hidden1{
      display: none;
  }
  
  @media screen and (max-width: 700px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
    .sidebar a {float: left;}
    #selam {margin-left: 0;}
  }

  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }