* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    background: #ccc;
}

/* GRID */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100vh;
    gap: 8px;
    padding: 8px;
}

/* BOX */
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    padding: 8px;
}

/* ✅ TEXT FIX (MAIN FIX) */
.box h2 {
    font-size: 18px;          /* bigger */
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;       /* space above image */
    color: black;
}

/* IMAGE */
.box img {
    width: 90%;
    height: 75%;
    border-radius: 40px;
    object-fit: cover;
}

/* COLORS */
.box1 { background: linear-gradient(to bottom, #0a0f7a, #8fb4c7); }
.box2 { background: linear-gradient(to bottom, #c6f300, #7edc7e); }
.box3 { background: linear-gradient(to bottom, #8b0000, #e57373); }
.box4 { background: linear-gradient(to bottom, #ff8c00, #e8c48f); }
.box5 { background: linear-gradient(to bottom, #64dd17, #a5d6a7); }
.box6 { background: linear-gradient(to bottom, #d16ba5, #c777d9); }

/* NAME */
.credit {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 12px;
}
