/* Main Heading */
h1 {
    background-color: rgb(223, 223, 223);
    text-align: center;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1vw; /* Responsive spacing */
    font-size: 6vw; /* Adjusts to screen size */
    margin: 0 auto;
    padding: 10px;
    max-width: 90%;
}

/* Button */
button {
    background-color: black;
    color: red;
    font-size: 3vw; /* Responsive font size */
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: red;
    color: black;
}

/* Image Container - Keeps all images in one row */
.image-container {
    display: flex;
    justify-content: center; /* Center images */
    align-items: flex-end; /* Align at bottom */
    gap: 10px; /* Space between images */
    max-width: 100%;
    padding: 10px;
}

/* Image Styling - Adjusts for Different Screens */
.image-container img {
    width: 18vw; /* Make images responsive */
    height: auto;
    max-width: 150px; /* Prevents images from getting too big */
}

/* Individual Image Adjustments */
.img1 {
    margin-top: -2vw; /* Adjust positioning */
}

.img2, .img3 {
    margin-top: -1vw;
}

/* Media Query for Small Screens (Mobile) */
@media (max-width: 600px) {
    h1 {
        font-size: 7vw;
        letter-spacing: 0.5vw;
    }

    button {
        font-size: 4vw;
        padding: 8px 15px;
    }

    .image-container img {
        width: 22vw; /* Reduce image size for mobile */
        max-width: 100px;
    }
}
