body{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    height: 95vh;
    background-color: rgb(61, 61, 61);
}

main{
    display: grid;
    grid-row: 2;
    align-items: center;
    justify-content: center;
}

img{
    max-width: 100%;
    height: auto;

}

