@font-face {
    font-family: 'Ailerons';
    src: url('../fonts/Ailerons-Typeface.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.ttf') format('truetype');
}


.header-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

#hero .logo {
    max-width: 150px;
    margin-right: 20px;
}

#hero .header-content p {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

/* Responsive Styles */
@media (min-width: 820px ) {
    #hero .brand {
        margin-top: 3rem;
    }
    
}
@media (max-width: 768px) {

    #hero .brand {
        margin-top: 0;
    }

    .header-content {
        flex-direction: column;
    }

    #hero .logo {
        max-width: 120px;
        margin-right: 0;
    }

    #hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
    }
}