body {
    margin: 0;
}

/*Text Styling*/
h1 {
    font-family: 'Roboto Flex', 'Black 900';
    font-size: 4rem;
}

h2{
    font-family: Jaro, sans-serif;
    font-size: 2.5rem;
}

p {
    font-family: Inter, sans-serif;
    font-size: 1rem;
}

/*Nav Bar*/
nav {
    padding: 1rem;
    background-color: #FF3700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navLogo {
    height: 20%;
    width: 20%;
}

ul {
    display: flex;
    list-style-type: none;
    align-items: center;
}

li {
    display: flex;  
    list-style-type: none;
    align-items: center;
}

/*Hero Banner Section*/
.heroTextBanner {
    background-color: #FF3700;
}

.heroTextBannerEnd {
    background-color: #FF3700;
    clip-path: polygon(0 0, 0 100%, 10% 100%);
}

.heroImg {
    margin: 0;
    padding: 0;
}

/*Home Page Classes*/
.homeAbout {
    background-image: linear-gradient(#FF3700, black, #FF3700);
}

/*Sign Up Now*/
.signupnow {
    background-color: black;
}

/*Footer*/
footer {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logos {
    width: 2rem;
    height: 2rem;
    color: white;
}