html {
    scroll-behavior: smooth;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
    --btncolor: #48B1FB;
    --txtcolor: #616064; 
    --bannerfontsize: 5.5rem;
    --h1fontsize: 2.5rem;
    --h2fontsize: 2.2rem;
    --titlefontsize: 3.2rem;
    --h3fontsize: 1.8rem;
}

.bodysection {
    padding-top: 100px;
}

.pagewidth {
    max-width: 1350px;
    margin: 30px auto;
}

.fullPanelAllDiv {
    display: grid;
}

.generalTitlePanel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.generalTitlePanel > h1 {
    font-size: var(--titlefontsize);
}

.generalTitlePanel > p {
    text-align: center;
    max-width: 570px;
    color: var(--txtcolor);
    font-size: 1.3rem;
}

p {
    font-size: 1.3rem;
    line-height: 1.6rem;
}


@media (max-width: 980px) {
    :root {
        --bannerfontsize: 3rem;
        --titlefontsize: 2rem;
        --h1fontsize: 1.8rem;
        --h2fontsize: 1.6rem;
        --h3fontsize: 1.3rem;
    }

    .bodysection {
        padding-top: 60px;
    }

    .pagewidth {
        margin: 20px 15px;
    }

    .generalTitlePanel {
        gap: 20px;
        padding: 0 10px;
    }

    .generalTitlePanel > h1 {
        font-size: var(--titlefontsize);
        text-align: center;
    }

    .generalTitlePanel > p {
        font-size: 1.1rem;
        max-width: 90%;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
}
