
/* General styling for the header */
.header_logo {
    display: flex;
    align-items: center;
}

/* Media query for mobile view (max width of 480px) */
@media (max-width: 480px) {
    .logo img {
        width: 60px;
        /* Set the desired width */
        height: 60px;
        /* Set the desired height */
        object-fit: contain;
        /* Ensures the image scales properly */
        margin-left: 276px;
        margin-top: -40px;
    }
}
    /* Media query for mobile view */
    @media (max-width: 768px) {
        .hero-image {
            position: absolute;
            top: 80px; /* Adjust for mobile view */
            left: 80px; /* Adjust for mobile view */
            width: 200px; /* Adjust image size for mobile */
        }
    }

.instagram{
    margin-top: -60px;
}