html {
    scroll-behavior: smooth;
}
a[href^="#q"] {
    color: #c96b8a;
    text-decoration: underline dotted;
}
body {
    margin: 0;
    padding: 0;
    background-image: url('deco/4mini.gif');
    display: flex;
    justify-content: center;
}

/* OUTER WRAPPER */
.boxcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* MAIN COLUMN */
.innercontainer {
    width: 900px;
    max-width: 92vw;
    padding: 20px;
    box-sizing: border-box;
}
/* Questionnaire container */
.questionnaire {
    margin: 0 auto;
    padding: 0;

    max-width: 900px;   /* matches your site width */
    width: 100%;
}

.questionnaire dt {
    margin-top: 20px;
    padding: 10px;

    font-weight: bold;

    border: 2px dotted #f279c8;

    background-color: #ffe3f3;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(242, 121, 200, 0.12) 0px,
            rgba(242, 121, 200, 0.12) 25px,
            transparent 25px,
            transparent 50px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(242, 121, 200, 0.12) 0px,
            rgba(242, 121, 200, 0.12) 25px,
            transparent 25px,
            transparent 50px
        );

    border-radius: 0px;
    color: #55038C;
}
.questionnaire dd {
    margin: 8px 0 0 25px;

    padding: 12px;

    font-size: 0.9em;

    border: 1px solid #f0b6d2;

    background: #fff0f7;

    line-height: 1.6;

    max-width: 100%;
    box-sizing: border-box;

    color: #3a1b2b;
}
/* Home Button Container */
.home-button-container {
  margin-top: 10px;
}

/* Regular Button Styles */
.regular-btn {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border: 3px double #f279c8;
  background-color: #FFCFF0;
  color: #55038C;
  text-decoration: none;
  cursor: pointer;
}
/* Hover effect for the regular button */
.regular-btn:hover {
  background-color: #f279c8;
  transition: background-color 0.3s ease;
}