
body{
    background-color: aqua;
    margin-top: 20px;
    margin-bottom: 20px;
}
main{
    margin-top: 100px;
    display:grid;
    grid-template-rows: 100px repeat(4,250px);
    grid-template-columns: 1fr 1fr 1fr;
    width:1281px;
    margin:auto;
    background-color:black;
}

h1,iframe, #Zac,#bob,ol,#Stone,#Silverstein{
    width:100%;
    background-color: aliceblue;
    border: double black 2px;
    padding:5px;
    font-size: 20px;
}

/* grid area goes in order of 
Row start/Column start /row end/column end
*/
h1{
    grid-area: 1/1 /2/4;
    text-align: center;
    font-size: 80px;
    font-weight: bold;
}

iframe{
    grid-area: 2/1 /3/2;
    height: 95%;
}

#zac{
    grid-area: 2/2 /3/4;
}

#bob{
    grid-area: 2/3 /3/4;
}

ol{
    grid-area: 3/1 /5/2;
    list-style:decimal;
    list-style-position: inside;
}

#Stone{
   grid-area: 3/2 /4/4;
   display: flex;
   gap:20px;
   align-items: center;
}
#Stone img{
    height: 100%;
}
#Stone figcaption{
    font-size: 50px;
    font-weight: bold;
}

#Logo{
    grid-area: 5/1 /6/2;
    height: 100%;
}

#Silverstein{
    grid-area: 4/2 /6/4;
}

.centeredImg{
    margin:auto
}