/* Apply basic Flexbox layout */
/*.container {*/
/*    display: flex;*/
/*    justify-content: space-between; !* Align items on the main-axis *!*/
/*    align-items: center; !* Align items on the cross-axis *!*/
/*}*/

/*.header-logo, .header-menu {*/
/*    flex: 1; !* Allow each child to grow *!*/
/*}*/


.MetalAndWood
{
    font-size: 100px;
    font-weight: bolder;
    color: #ECC405;
}

.subHead
{
    font-size: 45px;
    color:white;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .container {
        flex-direction: column; /* Stack flex items vertically on small screens */
    }

    .header-logo, .header-menu {
        text-align: center; /* Center-align the text for small screens */
    }

    .header-menu {
        margin-top: 0; /* Adjust the margin as needed for small screens */
    }
    .MetalAndWood
    {
        font-size: 50px;
      
    }
    .subHead
    {
        font-size: 20px;
    }

    .section-lg, bg-image
    {
        height:300px;
        padding:0;
    }
}
