/* 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:900px;
  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 {
  width: 100%;          /* match container width */
  height: 150px;

  background-color: #ffffe0;
  
  background-repeat: no-repeat;
  background-size: cover;    /* fills width nicely */
  background-position: center;

  border-radius: 20px 20px 0 0;

  text-align: center;
  color: white;

  padding: 20px;
  box-sizing: border-box;
}


.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;
     border: 2px dotted #F2BFD7;
 margin-top: 0;
  display: flex;
  padding: 0 20px 20px 20px; /* no top padding */
  gap: 20px;
  background: url(https://files.catbox.moe/a1sg7l.png);

}

/* Left Sidebar */
.left-sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
    background:url(https://files.catbox.moe/a1sg7l.pngS);
}

.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: 520px;
}
#inner2 {
    background-color: #ffffff;
    width: 200p;
    height: 500px;
    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 */
.bar {
    background-color: #ffc6e7;
    padding: 4px;
    width: 98%;
    height: 30px;
    border-top: 1px dotted #666666;
    border-bottom: 1px dotted #666666;
    font-size: 15pt;
    font-weight: 600;
    padding-bottom: 2px;
    margin-bottom: 2px;
}
.bar2 {
    background-color: #fce1f1;
    padding: 4px;
    width: 98%;
    height: 30px;
    border-top: 1px dotted #666666;
    border-bottom: 1px dotted #666666;
    font-size: 15pt;
    font-weight: 600;
    padding-bottom: 2px;
    margin-bottom: 2px;
}
.bar3 {
    background-color: #fce1f1;
    padding: 4px;
    width: 98%;
    height: 30px;
    border-top: 1px dotted #666666;
    border-bottom: 1px dotted #666666;
    font-size: 15pt;
    font-weight: 600;
    padding-bottom: 2px;
    margin-bottom: 2px;
}
.content {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #f8f8f8;
}

/* 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: 1100px;        /* 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);
            }
        }
        blink {
  animation: blinker 1s linear infinite;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  70% {
    opacity: 0;
  }
}
.pattern-box {
    width: 100%;
    height: 20px;

    background-image: url("https://files.catbox.moe/wff98m.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 30px;

    margin: 0;
    padding: 0;
    border: none;
    display: block;
}
.rounded-corners {
  border-radius: 15px; /* Adjust the pixel value for more or less rounding */
}
.button-link {
  background: url(https://files.catbox.moe/ipigp9.gif);
 background-position: 100px;
 background-size: -1000px;
 margin-top: 100px;
}

