/* style.css */

#openBtn {
  font-size: 18px;
  padding: 10px 15px;
  margin: 10px;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: transform 0.7s;
}

#openBtn:hover {
  transform: scale(1.2);
}

.sidebar {
  height: 100%;
  width: 300px;
  position: fixed;
  top: 0;
  left: -310px;
  background-color: black;
  color: white;
  padding-top: 20px;
  box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.5);
  box-sizing: content-box;
  transition: 0.5s;
  z-index: 1000;
  overflow: auto;
}

::-webkit-scrollbar {
  display: none;
}

.sidebar a,
.sidebar .dropdown-btn,
.sidebar .dropdown-btn1,
.sidebar .dropdown-btn2 {
  padding: 12px 20px;
  text-decoration: none;
  font-size: 16px;
  color: white;
  display: block;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.dropdown-btn,
.dropdown-btn1,
.dropdown-btn2 {
  width: 100%;
}

.sidebar .dropdown-container,
.sidebar .dropdown-container1,
.sidebar .dropdown-container2 {
  display: none;
  background-color: #131212;
  padding-left: 15px;
  box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 1);
}

.sidebar a:hover,
.sidebar .dropdown-btn:hover,
.sidebar .dropdown-btn1:hover,
.sidebar .dropdown-btn2:hover {
  background-color: rgb(85, 85, 85);
  box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 0.7);
}

.sidebar img {
  width: 35%;
  margin-left: 30%;
}

.sidebar p {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 30%;
  text-align: center;
}

#closeBtn {
  font-size: 24px;
  float: right;
  margin-right: 10px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
