@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
/* Import Bebas Neue font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Global Heading Styles */
h1, h2, h3, h4, h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Global Heading Styles with Bebas Neue */
h1 {
    font-size: 48px; /* Largest, primary heading */
    font-weight: bold;
}

h2 {
    font-size: 36px; /* Secondary heading */
    font-weight: bold;
}

h3 {
    font-size: 28px; /* Sub-section title */
}

h4 {
    font-size: 22px; /* Smaller content header */
}

h5 {
    font-size: 18px; /* Supporting text header */
}
h6 {
    font-size: 16px; /* Supporting text header */
}
/* Global Body Styles */
html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    height: 100%;
    overflow: auto;
}
p {
    font-family: 'Source Sans Pro', sans-serif;
}
/* Ensure elements inside respect padding/margin */
* {
    box-sizing: inherit;
}
/* Fluid Responsiveness */
@media screen and (max-width: 1024px) {
    h1 { font-size: 50px; }
    h2 { font-size: 42px; }
    h3 { font-size: 32px; }
    h4 { font-size: 26px; }
    h5 { font-size: 22px; }
}

@media screen and (max-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 34px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
}

@media screen and (max-width: 480px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
}
