#right {
    display: grid;

    grid-template-rows: repeat(2, 200px);
    grid-template-columns: repeat(2, 200px);

    gap: 24px;

    justify-content: center;

    align-content: center;
    margin: auto;
}

.box {
    width: 200px;
    text-align: center;
    border: 2px solid black;
}

.box img {
    height: 40px;
    display: block;
    margin: auto;
    padding: 10px 0;
}

.box > div {
    display: flex;
    flex-direction: column;

    justify-content: center
}

main {
    height: 100vh;
    margin: auto;
    gap: 72px;
}

#left {
    align-content: center;
    margin: auto;
}

body {
    display: flex;
    justify-content: center;
}

@media (max-width: 470px) {
    #right {
        grid-template-columns: 200px;
    }

    h1 {
        font-size: 76px;
    }
}