/* Basic Body Styling */
body {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    color: black;
    text-align: left;
    border: 2px solid black;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}

/* Paragraphs */
p {
    margin-bottom: 1.5em;
}

/* Box around Question and Answer */
.question-answer-box {
    border: 2px solid #007acc;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: #f4f7fa;
}

.question-answer-box .question, 
.question-answer-box .answer {
    margin-bottom: 1.2em;
    font-size: 1.1rem;
}

/* Header Styling */
header {
    text-align: center;
    color: #007acc;
    margin-top: 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #007acc;
    line-height: 1.3;
    letter-spacing: 1px;
    font-weight: bold;
}

h1 {
    font-size: clamp(36px, 8vw, 48px);
}

h2 {
    font-size: clamp(32px, 7vw, 42px);
}

h3 {
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 600;
}

h4 {
    font-size: clamp(24px, 5vw, 30px);
    font-weight: normal;
}

h5 {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: normal;
}

h6 {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: normal;
}

/* Logo Styling */
#logo {
    width: 70%;
    max-width: 300px;
    height: auto;
    transition: width 0.3s ease;
    margin: 0 auto;
}

/* Top Bar with Button */
.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.banner-toggle {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu Button */
.hamburger-container {
    display: none;
}

/* Black Banner Styling */
.black-banner {
    background-color: black;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-direction: row;
}

.black-banner.show {
    display: flex;
    flex-direction: row;
}

.black-banner a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    padding: 12px 18px;
    border: 1px solid white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
    transition: 
        background-color 0.3s ease, 
        color 0.3s ease, 
        box-shadow 0.3s ease;
    line-height: 1.4;
    letter-spacing: 0.5px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.black-banner a:hover {
    background-color: white;
    color: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Larger Buttons */
button {
    font-size: 1.5rem;
    padding: 15px 30px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background-color: #007acc;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005f8d;
}
#userAnswer1{
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer2 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer3 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}#userAnswer4 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer5 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer6 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#input {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
/* Mobile Styles */
@media (max-width: 768px) {
    body {
        font-size: clamp(16px, 4vw, 20px);
        padding: 15px;
    }

    header {
        margin-top: 30px;
    }

    header h1 {
        font-size: clamp(22px, 5vw, 28px);
        margin-top: 30px;
    }

    #logo {
        width: 60vw;
        max-width: 250px;
    }

    .hamburger-container {
        display: flex;
        text-align: right;
        margin-bottom: 10px;
    }

    .black-banner.show {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .black-banner a {
        font-size: 1.1rem;
        padding: 10px 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        background-color: #222;
        color: white;
        display: inline-block;
        line-height: 1.3;
        transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    }

    button {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
#userAnswer1{
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer2 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer3 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}#userAnswer4 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
#userAnswer5 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
   #userAnswer6 {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
} 
#input {
  width: 300px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}
}
