.imageRow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* remove extra gap */
}

.imageRow a {
    display: inline-block;
    flex: auto;
    /* IMPORTANT: stops flex stretching */
    padding: 0;
    margin: 0;
}

.imageRow img {
    display: block;
}

.imageRow {
    gap: 0;
}

.sameSize {
    width: 7%;
    height: auto;
}

.differentSize {
    width: 25%;
    height: auto;
}

.item span {
    color: #20a20e;
    font-family: "Courier New", monospace;
}

body {
    min-height: 100svh;
    background: #005070 center / cover no-repeat fixed;
    font-family: "Courier New", monospace;
}

/* OVERLAY */
#feedbackOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* BOX */
#feedbackBox {
    background: #005070;
    border: 2px solid #000;
    width: 90%;
    max-width: 400px;
    padding: 20px;
}

/* TEXTAREA */
#feedbackBox textarea {
    width: 100%;
    height: 120px;
    background: #007090;
    color: #000;
    border: 1px solid #000;
    padding: 10px;
    resize: none;
    font-family: "Courier New", monospace;
}

/* SUBMIT */
#feedbackBox input[type="submit"] {
    width: 100%;
    margin-top: 10px;
    background: #007090;
    color: #000;
    border: 2px solid #005070;
    padding: 10px;
    cursor: pointer;
}

/* CLOSE BUTTON */
#closeFeedback {
    background: none;
    border: none;
    color: #000;
    font-size: 18px;
    float: right;
    cursor: pointer;
}
