/* Page Body */

body {
  margin: 0;
  background: #ffe6f2 url('background7.jpeg') repeat-x;
  font-family: 'Quicksand', sans-serif;
  color: #5c3a4d;
  cursor: url('cutecursor.gif'), auto;
}


h1, h3 {
  font-family: 'Sacramento', cursive;
  margin: 0 0 3px 0;
  color: #fde0f2;
}

h2 {
  font-family: 'Sacramento', cursive;
  font-size: 34px;
  margin: 0 0 10px 0;
  color: #fde0f2;
}

/* Hanging Navigation Sign*/

.sign {
  position: fixed;
  border-width: 8px;
  border-style: solid;
  border-image: url("border1.png") 8 fill round;
  width: 180px;
  height: 300px;
  top: 76px;
  left: 45px;
  z-index: 2;
}

.sign-buttons {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.sign-buttons a {
  font-family: 'Sacramento', cursive;
  font-size: 23px;
  font-weight: bold;
  text-decoration: none;
  color: #fde0f2;
  width: 100%;
  height: 35px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 2px 2px 2px inset white, -1px -1px 1px inset #f7dbed;
  border: 1px solid #f7dbed;
  background-image: linear-gradient(#fff5fb 70%, #ffffff 100%);
}

.sign-buttons a:hover {
  background-image: linear-gradient(#FEFFF1 70%, #FFFFFF 100%);
  color: #daecfb;
  box-shadow: 2px 2px 2px inset white, -1px -1px 1px inset #f7dbed;
  border: 1px solid #f7dbed;
}


/* Main Page Container */

.page-container {
  display: flex;
  justify-content: center;
  position: relative;
}  

/* Main Box */

.main-box {
  width: 85%;
  max-width: 1100px;
  margin: 20px auto;
  background: #fcf0f4;
  padding: 20px;
  margin-left: 280px;

/* Border around the Main Box*/

  border-image-source: url(border1.png);
  border-image-slice:7;
  border-image-width: 10px;
  border-image-repeat: round;
  border-style: solid;
  border-radius: 5px;
}

/* Banner */
.banner {
  background: #FFE8F3 url('banner8.jpeg');
  background-repeat: no-repeat;     
  background-size: 350px;           
  background-position: top;  
  height: 150px;
  text-align: center;
  padding: 30px;
  border-radius: 3px;
  margin: -13px;
  margin-bottom: 20px;
  position: relative;
  font-size: 22px;
}

/* For lace at the bottom of banner */

.banner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('https://64.media.tumblr.com/8bb022921fabce24507971141cdaa077/dc6f0badd4745795-13/s2048x3072/2240851e080e08b83dceef1e368e0cc7024c1acb.png') repeat-x center/contain;
}

.banner h1 {
  font-size: 3em;
  text-shadow: 2px 2px white;
}

/* Columns */
.columns {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 20px;
}

/* Sidebars */
.left, .right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Boxes */
.box {
  background: #fff0f7 url('background3.jpeg');
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 3px 6px rgba(255, 182, 193, 0.5);
}

.extra-box {
  border-width: 12px;
  border-style: solid;
  border-image: url("border3.png") 6 fill round;
  border-radius: 5px;
  padding: 15px;
}

.box h2 {
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.extra-box h3 {
  border-bottom: 1px solid #FFCFE0;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 10px;
}


/* Link Buttons */
.button-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button-links a {
  display: block;
  background: url('polka2.jpeg') no-repeat center center;
  background-size: cover;   
  color: #fde0f2;              
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 5px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(255, 192, 203, 0.7);
  transition: all 0.3s ease;
}

.button-links a:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 12px pink;
}

.rope {
  position:fixed;
  border-left: 3px solid #fde0f2;
  border-right: 3px solid #fde0f2;
  width: 70px;
  height: 100px;
  top: 0px;
  margin-left: 105px;
  z-index: 1;
  }
