/*Header section*/
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid black;
}

header h1 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #111;
    margin: 0;
    text-align: center;
    flex-wrap: wrap;
}

header h1 svg {
    width: clamp(1.8rem, 4vw, 3rem);
    height: clamp(1.8rem, 4vw, 3rem);
    fill: currentColor; /* Makes SVG follow text color */
}

@media (max-width: 600px) {
    header {
    padding: 0.8rem;
    }
    header h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    }
}
/*Header section*/










* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 8px;
    padding: 0px 8px 0px 8px;
    border:1px solid black;
}

ul {
    list-style-type: none;
}

li {
    line-height: 200%;
}

textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

button[type=submit], a button {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
}

a {
    text-decoration: none;
}

#question_and_feedback {
    border: 1px solid black;
    padding: 16px;
}

ol {
    list-style-position: inside;
    padding: 0%;
}

ul {
    list-style-position: inside;
    padding: 0%;
    text-align: center;
}

#feedback_or_ideas {
    text-align: center;
}

