body {
    display:block;
}

/* Main design page - Bold & impactful */
.menu {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(30px, 5vw, 45px); /* Responsive: 30px (mobile) → 45px (desktop) */
    line-height: 1.2; /* Tight for bold aesthetic */
    max-width: 80%;
    overflow: hidden;
    /*color: rgb(55,55,55);*/
    color: bisque;

    -moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none; -o-user-select:none;
    width: auto;
    position: fixed;
    top: 0%;
}

/* About page - Oversized but readable */
body.about .menu {
    font-size: clamp(22px, 3.5vw, 32px); /* More readable for text-heavy content */
    line-height: 1.5; /* More breathing room between lines */
    max-width: 85%; /* Slightly wider for readability */
}

/* Success page - Friendly & clear */
body.success .menu,
body.success .status-container {
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.6;
}

#message {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(28px, 4.5vw, 43px); /* Slightly smaller than menu */
    max-width: 100vw;
    overflow: hidden;
    color: rgb(55,55,55);
    width: auto;
    position: fixed;
    top: 0%;
}
