body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fff;
}

.logo {
    max-width: 100%;
    height: auto;
}

.instagram-logo {
    width: 5%; /* Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
}

.instagram-link {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the items */
    justify-content: center; /* Horizontally center the items */
    text-align: center; /* Center the text */
    gap: 10px; /* Add spacing between the logo and text */
}