/* defaultstyle.css */

/* Global defaults for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body defaults */
body {
    font-family: Arial, sans-serif; /* fallback */
    font-size: 16px;
    line-height: 1.5;
    color: #222;
}

/* Example for H1 wrapper and text */
.web1team-h1-wrapper {
    padding: 2rem 1rem;
    margin: 1rem auto;
    max-width: 800px;
    text-align: center;
    background: #fff;
}

.web1team-h1 {
    font-family: 'Bruno Ace', sans-serif;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
    line-height: 1.2;
    color: #555;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    text-align: center;
}

/* Example for intro wrapper and text */
.web1team-introp-wrapper {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
    max-width: 800px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.web1team-introp {
    font-family: 'Bruno Ace', sans-serif;
    font-size: clamp(1rem, 2.5vw + 0.25rem, 1.5rem);
    line-height: 1.4;
    text-align: center;
    color: black;
}