body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 400px;
  background: #fcfcf5;
  border: 3px solid black;
  padding: 10px;
  position: relative;
  overflow: hidden;
  clip-path: url(#scalloped);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bunny {
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

.bunny img {
  width: 100px;
  height: auto;
}

.content-wrapper {
  display: flex;
  height: 400px;
  overflow-y: scroll;
  padding: 10px;
  border-top: 2px solid black;
  margin-top: 10px;
  background: #fff;
}

.sidebar {
  width: 30%;
  border-right: 2px solid black;
  padding: 10px;
  box-sizing: border-box;
}

.sidebar h2 {
  font-size: 16px;
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 8px;
}

.sidebar a {
  text-decoration: none;
  color: black;
}

.main-content {
  width: 70%;
  padding: 10px;
  box-sizing: border-box;
}

.main-content h2 {
  margin-top: 0;
}
