/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1; /* Light gray background */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  padding-top: 40px; /* Space for the folder effect */
}

/* Folder wrapper to make the content look like a manila folder */
.folder-wrapper {
  width: 80%;
  background-color: #f5e5a9; /* Light manilla color */
  border-radius: 10px;
  position: relative;
  padding-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-image: url('https://www.transparenttextures.com/patterns/paper-1.png'); /* Paper texture */
  background-size: cover;
  padding-bottom: 20px;
}

.folder-top {
  background-color: #f1d97b; /* Slightly darker top part to simulate the flap */
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 5px solid #d4bb6d; /* Gives a nice border effect */
  border-radius: 10px 10px 0 0;
  box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.folder-top-left {
  width: 60px;
  height: 100%;
  background-color: #f1d97b;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px 0 0 10px;
}

/* Style for content inside the folder */
.folder-content {
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Title styles */
h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #2f2f2f;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-top: 30px;
}

p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #555;
}

ul li {
  margin: 5px 0;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

/* Shadow under the folder to add depth */
.folder-shadow {
  position: absolute;
  top: 30px; /* Adjusted to align with folder top */
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
