html{
    height: 100%;
    margin: 0;
    background: linear-gradient(white, rgb(243, 222, 127))no-repeat rgb(243, 222, 127);
}

#grid{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 4fr 1fr;
    grid-gap: 5px;
    align-items: stretch;
    grid-template-areas:
      "left header right"
      "left main right"
      "left footer right"

}

body{
    height: 100%;
}

header{
    grid-area: header;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: white;
}

main{
    grid-area: main;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.19);
}

footer{
    grid-area: footer;

    font-family: 'Lemonada', cursive;
    text-align: center;
    color: tomato;
}

#logo{
    width: 60%;
    margin-bottom: 5px;
}

#gotcha{
    width: 50%;
}
