@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;800&display=swap');

body, html {
    height: 100%;
    width: 100%;
    background-color: rgba(253,253,251, 1);
    font-family: 'Noto Sans', sans-serif;
}

body {
    display: grid;
    grid-template-columns: 1fr 20rem 1fr;
    grid-template-rows: 1fr 20rem 20rem 1fr;
}

img {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

main {
    grid-column: 2/3;
    grid-row: 3/4;
    color: #000;

    font-size:14px;
}
