body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 18px;
    margin: 0;
    padding: 0 10px;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Logos: Instead of absolute, use flex container for better responsive layout */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 60px; /* space for logos */
}

.logo {
    width: 60px;
    height: auto;
    position: fixed;
    top: 10px;
    z-index: 10;
}

.left-logo {
    left: 10px;
}

.right-logo {
    right: 10px;
}

/* Heading */
h1 {
    color: red;
    font-size: 2rem; /* scalable size */
    margin-bottom: 10px;
}

/* Paragraph */
p {
    font-size: 1.25rem; /* ~20px */
    margin-bottom: 20px;
}

/* Images grid */
.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Images */
.images img {
    width: 120px;           /* fixed width */
    height: 120px;          /* fixed height */
    object-fit: contain;    /* contain entire image inside the box without cropping */
    background-color: #fff; /* optional - if image has transparency, show white bg */
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}


.images img:hover {
    transform: scale(1.1);
}

.images img.circled {
    border: 4px solid blue;
    border-radius: 50%;
}

/* Trademark logo fixed at bottom right */
.trademark-logo {
    position: fixed;
    bottom: 5px;
    right: 10px;
    width: 60px;
    height: auto;
    opacity: 0.8;
    z-index: 1000;
}

/* Stars container */
#stars {
    font-size: 2.5rem;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .images img {
        width: 90px;
        height: 90px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        width: 40px;
        top: 5px;
    }

    .trademark-logo {
        width: 50px;
    }
}

@media (max-width: 400px) {
    .images img {
        width: 70px;
        height: 70px;
    }

    h1 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}
