body {
    background: black;
    color: red;
    font-family: serif;
}

/* GRID LAYOUT */
.char-grid {
    display: grid;
    grid-template-columns: repeat(4, 120px); /* smaller boxes */
    gap: 25px;
    justify-content: center; /* centers the whole grid */
    margin-top: 30px;
}

/* EACH BOX */
.char-box {
    width: 120px;
  

    border: 2px solid red;
    background-color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    transition: 0.3s;
}

/* IMAGE INSIDE */
.char-grid {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  gap: 20px;
  justify-content: center;
}

.char-box {
  width: 100px;
  height: 100px;
  background: #111;
  border: 1px solid #444;
  overflow: hidden;
}

.char-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER EFFECT */
.char-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px red;
    
}