@charset "utf-8";
/* CSS Document */
/* Font Family */
body {
    font-family: 'Barlow Condensed', sans-serif;
}

/* Font Sizes */
body {
    font-size: 16px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
}

/* Font Colors */
body {
    color: #1E1E1E;
}

h1, h2, h3, h4, h5 {
    color: #000;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.25rem;
    }
    h5 {
        font-size: 1rem;
    }
    p {
        font-size: 0.875rem;
    }
}

