body { 
  background-color: #ffeab7; 
  background-image: url("https://imagesforblogsite.carrd.co/assets/images/image16.jpg?v=3eb31069");
  background-repeat: repeat;      
  background-position: top left;      
  background-attachment: fixed;
  background-size: 500px auto;
  font-family: 'Pixelify Sans', sans-serif; 
  color: #4b2e05;
  margin: 0;
  padding: 40px 0;
}

h1, h2, h3 {
  font-family: 'Pixelify Sans', sans-serif;
  color: #4b2e05;
  text-align: center;
}

p, span, li, a, div {
  font-family: 'Courier New', sans-serif;  
  color: #333;
  font-size: 13px;
  line-height: 1.5;
}

#container {
  width: 760px;
  margin: auto;
  border: 15px solid transparent;
  border-image: url("https://dl.dropbox.com/s/rr5se47u373c2yn/orange%20lace.png") 8 fill round;
  padding: 20px;
  text-align: center;
}

#nav {
  margin: 15px 0;
  font-size: 13px;
  text-align: center;
}
#nav a {
  color: #6a3d00;
  text-decoration: none;
  padding: 4px 10px;
  transition: 0.3s;
}
#nav a:hover {
  background: white;
  border-radius: 25px;
}


#main {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}

#sidebar {
  width: 220px;
  background: #fffdf4;
  border: 3px dotted #f6d28d;
  padding: 15px;
  box-sizing: border-box;
  text-align: left;
}
#sidebar h3 { margin-top: 0; font-size: 20px; color: #6a3d00; }
#sidebar ul { list-style: none; padding: 0; margin: 10px 0 0 0; }
#sidebar ul li { margin: 8px 0; }
#sidebar ul li a { text-decoration: none; color: #4b2e05; transition: 0.3s; }
#sidebar ul li a:hover { color: #b26e00; }

.back-button {
  display: block;
  width: 50%;
  margin: 15px auto;
  padding: 8px 0;
  background: #fffdf4;
  border: 3px dotted #f6d28d;
  color: #4b2e05;
  font-family: 'Pixelify Sans', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.back-button:hover {
  background: #fef7e5;
}

/*general*/

#content {
  flex: 1;
  background: #fffdf4;
  border: 3px dotted #f6d28d;
  padding: 20px;
  text-align: left;
  line-height: 1.6;
  box-sizing: border-box;
}

.socialbox {
  margin-top: 20px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;     
  align-items: center;      
}

.title {
  margin-bottom: 15px;
  font-size: 28px;
  text-align: center;
  color: #4b2e05;
  font-family: 'Pixelify Sans', sans-serif;
}

#content {
  width: 100%;         
}

.social {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  text-align: center;
}
.link-btn {
  display: block;
  text-decoration: none;
  color: #4b2e05;
  font-family: 'Courier New', monospace;
  padding: 8px;
  border: 2px dotted #e6b773;
  border-radius: 12px;
  background: #fff7e1;
  transition: 0.25s ease;
}
.link-btn:hover {
  background: #ffe7b7;
  border-color: #c9893a;
  transform: translateY(-2px);
}
