/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;400&display=swap");

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "M PLUS 1p", sans-serif;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: -250px; /* Initial hidden position */
  background: rgb(75, 48, 17);
  width: 250px;
  height: 100%;
  transition: all 0.5s;
}

.sidebar header {
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 70px;
  background: rgb(138, 90, 36);
  user-select: none;
}

.sidebar ul a {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 65px;
  font-size: 20px;
  color: #fff;
  padding-left: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid black;
  transition: 0.4s;
}

ul li:hover a {
  padding-left: 50px;
}

.sidebar ul a i {
  margin-right: 16px;
}

.item01 {
  text-align: center;
}

.container main {
  text-align: center;
}
/* Off-screen Toggle Button */
#check {
  display: none;
}

label #btn,
label #cancel {
  position: absolute;
  cursor: pointer;
  background: #b66f2d;
  border-radius: 3px;
}

label #btn {
  left: 40px;
  top: 25px;
  font-size: 25px;
  color: #fff;
  padding: 6px 12px;
  transition: all 0.5s;
}

label #cancel {
  z-index: 10;
  left: -195px; /* Initially hidden on the left */
  top: 17px;
  font-size: 30px;
  color: #fff;
  padding: 4px 9px;
  transition: all 0.5s;
}

/* Sidebar Functionality */
#check:checked ~ .sidebar {
  left: 0;
}

#check:checked ~ label #btn {
  left: 250px;
  opacity: 0;
  pointer-events: none;
}

#check:checked ~ label #cancel {
  left: 195px;
}

#check:checked ~ section {
  margin-left: 250px;
}

.head_container {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

h1 {
  font-size: 18px;
}

header ul {
  list-style: none;
  margin: 0; /* Remove potential margin */
}

header ul li {
  display: inline-block;
}

header h2 {
  text-align: center;
  margin-top: 60px;
}

/* Navigation */
nav ul {
    list-style: none;
  text-align: center;
  padding: 0; /* Remove
 }