body {
    background-image: url(walalabackground.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#home-icon {
    position: fixed;
    top: 20px; /* Adjust the vertical position as needed */
    left: 20px; /* Adjust the horizontal position as needed */
    width: 200px; /* Adjust the width as needed */
    height: auto;
    z-index: 1000; /* Ensure it's on top of other elements */
    cursor: pointer; /* Show the hand cursor on hover */
}

h1, h2, h3 {
    text-align: center;
}

@media only screen and (max-width: 600px) {
    body {
        padding-top: 50px; /* Add space at the top of the body */
    }

    #home-icon{
        left: 50%;
        transform: translateX(-50%);
        top: 5px;
    }
}