@charset "UTF-8";

main {
    display: grid;
    grid-template-areas: 
    "h1 h1"
    "selfie text";
    grid-column-gap: 1em;
}

h1 {
    grid-area: h1;
}

p {
    grid-area: text;
}

.selfie img{
    grid-area: selfie;
    width: 400px;
    height: 400px;
}