/* style.css */

body {
    background-image: url('resource/gianad_05.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
    color: #ddd;
    background-color: #010101;
    text-align: center;
    height: 90vh;
    margin:left 8% right 8%;
}

#top-left {
    position: absolute;
    top: 25%;
    left: 25%;
    max-width: 40%;
    transform: translate(-50%, -50%);
}

#top-left h1 {
    font-size: 36px;
    
    font-family: 'Yantramanav', sans-serif;
}

#top-left p {
    font-size: 24px;
    font-family: 'Yantramanav', sans-serif;
    line-height: 1.3;
}

#bottom-right {
    position: absolute;
    top: 75%;
    left: 75%;
    max-width: 60%;
    width: 40%;
    transform: translate(-50%, -50%);
}

#bottom-right h2 {
    font-size: 32px;
    font-family: 'Yantramanav', sans-serif;
}

#bottom-right p {
    font-family: 'cousine', sans-serif;
    line-height: 1.3;
    font-weight: 100;
    font-size: 16px;
    margin: left 20% right 20%;
}

#image-container {
    display: none; /* Initially hide the image container */
}


/* Media query for mobile devices (max-width: 480px) */
@media screen and (max-width: 960px) {
       body {
        background-image: none; /* Remove the background image */
        background-color: #010101; /* Set background color if needed */
    }

    #top-left, #bottom-right {
        position: static; /* Reset positioning for mobile devices */
        max-width: 100%; /* Expand content to full width */
        transform: none; /* Reset transforms */
        padding: 10px; /* Add some padding for better spacing on small screens */
        width: 90%;
    }

    /* Show the image container on mobile devices */
    #image-container {
        display: block;
        text-align: center;
    }

    /* You can adjust the size of the image if needed */
    #mobile-image {
        max-width: 100%; /* Adjust the image width to fit the screen */
        height: auto;
        
    }

    #top-left h1 {
        font-size: 24px; /* Adjust font size for mobile */
    }

    #top-left p {
        font-size: 16px; /* Adjust font size for mobile */
    }

    #bottom-right h2 {
        font-size: 24px; /* Adjust font size for mobile */
    }

    #bottom-right p {
        font-size: 14px; /* Adjust font size for mobile */
    }
}