@charset "UTF-8";

main {
    display: grid;
    grid-template-areas: 
    "h1 h1"
    "portal1 portal2";
}


h1 {
    grid-area: h1;
}

figcaption {
    font-size: 2em;
}
.portal1 img{
    grid-area: portal1;
    height: 400px;
}

.portal2 img{
    grid-area: portal2;
    width: 400px;
    height: 400px;
}


