.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: calc(100% - 4rem);
    width: max-content;
}

.contact-grid i {
    font-size: 10rem;
    width: 12rem;
}

.contact-grid .object:hover {
    cursor: pointer;
}

