/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(https://files.catbox.moe/ulrsn1.gif);
  font-family:ms ui gothic;
  color:#000000;
  font-size:18px;
}
.container {
  width:700px;
  max-height:2800px;
  border-width:0px;
  border-radius: 30px;
    border: 5px ridge #F2BFD7;
  background-image: url(https://files.catbox.moe/fqd590.gif);
  margin-right:auto;
  margin-left:auto;
  margin-top:20px;
  margin-bottom:20px;
  border-radius:30px;
  padding:25px;
  -webkit-box-shadow: 0px 0px 38px 26px #FFFFFF; 
  box-shadow: 0px 0px 38px 26px #FFFFFF; 
}

/* Header */
.header {
  background-image: url(https://files.catbox.moe/ji1thf.jpg);
  background-size: cover;       /* Cover the entire header area */
  background-position: center;  /* Center the image */
  color: white;                 /* Make text readable on dark image */
  padding: 40px 20px;
  text-align: center;
  width: 100%;           /* Ensure full width inside container */
  box-sizing: border-box;
   border-radius: 10px 10px 0px 0px; /* optional rounded bottom */
  padding: 20px;
  width: 650px;
  height: 150px;
  padding-bottom: 0;
}

.nav {
  width: 100%;
  height: 40px;
  border-style: solid;
  border-width: 1px 0; /* top and bottom only */
  border-color: lightgray;
  text-align: center;
  background: lightyellow;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0 0 0px 0px; /* optional rounded bottom */
  padding-top: 8px;
   border-bottom: none;
}


.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

/* Layout */
.main-content {
     border-top: none;
 margin-top: 0;
  display: flex;
  padding: 0 20px 20px 20px; /* no top padding */
  gap: 20px;
  background: lightyellow;
}

/* Left Sidebar */
.left-sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
    background:lightyellow;
}

.box-one {
  border-radius: 5px;
    border-width: 12px;
    border-style: solid;
    border-image: url(https://files.catbox.moe/1imq9h.png) 6 fill round;
    width: 180px;
    height: 450px;
}
#inner2 {
    background-color: #ffffff;
    width: 155px;
    height: 425px;
    border-radius: 5px;
    border: 2px dotted #F2BFD7;
}

.box-two {
  
  background-color: #f0fff0;
  border: 1px solid #90ee90;
}

.box-three {
 
  background-color: #f0f8ff;
  border: 1px solid #add8e6;
}
/* Content Section */
.content {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #f8f8f8;
}
.nav2 {
  width: 100%;
  height: 40px;
  border-style: solid;
  border-width: 1px 0; /* top and bottom only */
  border-color: lightgray;
  text-align: center;
  background: rgb(201, 201, 132);
  box-sizing: border-box;
  margin: 0;
  border-radius: 0 0 0px 0px; /* optional rounded bottom */
  padding-top: 8px;
   border-bottom: none;
}

/* Right Sidebar */
.right-sidebar {
  width: 20%;
  /* Add content or leave empty */
}
.lace-top {
  width: 100%;
  height: 10px; /* Adjust to your image height */
  background-image: url(https://files.catbox.moe/z84rtg.png); /* lace image URL */
  background-repeat: repeat-x;
  background-position: top;
  margin-bottom: -10px; /* Pull up to overlap slightly if needed */
}
.floating {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 50px;         /* Change from bottom to top */
  left: 1250px;        /* Change from right to left */
  background-color: lightblue;
  border-radius: 50%;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }