/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Nastaliq Urdu', serif;
    background-color: #ffffff;
    color: #3c3636;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

main {
    text-align: center;
}

h1 {
    font-size: 4.5rem;
    font-weight: 400;
    color: #1B263B;
    padding: 0.5em;
    position: relative;
    cursor: default;
    direction: rtl;
}

/* Subtle hover effect */
h1:hover {
    filter: brightness(1.1);
    text-shadow: 0 0 4px rgba(84, 110, 122, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.8rem;
    }
} 

/* Image container and responsive image styles */
.image-container {
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 100%;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 60vh;
    object-fit: contain;
}

/* Responsive adjustments for image */
@media screen and (max-width: 768px) {
    .image-container {
        margin-top: 1.5rem;
    }
    
    .responsive-image {
        max-height: 50vh;
    }
}

@media screen and (max-width: 480px) {
    .image-container {
        margin-top: 1rem;
        padding: 0 0.25rem;
    }
    
    .responsive-image {
        max-height: 50vh;
        width: 95%;
        border-radius: 6px;
    }
} 