main, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.image-progrid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 480px);
    /*grid-template-rows: repeat(1, 600px);*/
    position: relative;
}

.image-grid {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-rows: 30px 1fr 1fr ;*/
    gap: 10px;
    max-height: 75vw;
    margin: 0 auto;
    position: relative;
    width: 100%;
    grid-template-areas:
    "null null";

}

.description {
    grid-area: null;
}

.image-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

.image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.text {
    display: flex;
    justify-content: space-around;
}

p {
    font-family: Menlo;
}