* {
  margin: 0;
  padding: 0;
}
body {
  font-family: sans-serif;
  background: #ebebeb;
}

.main {
  margin: 1rem;
  height: 100vh;
}

.header {
  display: flex;
  justify-content: end;
}

.icon {
  padding: 10px;
  height: 2rem;
  cursor: pointer;
  border-radius: 10px;
}
.icon:hover {
  background-color: red;
}

.title {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.side-bar {
  position: fixed;
  background-color: white;
  width: 50%;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s linear;
  transform: translate(-100%);
  margin-left: -2rem;
  margin-top: -5rem;
  
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

ul {
  list-style: none;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

li {
  padding: 1rem;
}

li:hover {
  background-color: aqua;
}

a {
  text-decoration: none;
}

a:hover {
  color: blue;
}

h2 {
  color: orangered;
}

.hidden {
    transform: translate(0);
}

