/* ============================ BROWSER RESET ============================ */

html, body, div, span, applet, object, iframe,
h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;

    box-sizing: border-box;

    background-color: transparent;
}
/* Above code is modified from this post by user shenole latimer: https://stackoverflow.com/questions/44186354/div-not-extending-to-top-of-body */

body{
    background-image: url(../bliss.png);
    background-size: cover;
    height: 100vh;
    width: 100vw;

    overflow-y: hidden;
    overflow-x: hidden;
}

.gridCont{
    display: grid;

    width: 60vw;
    height: 90vh;

    background-color: transparent;
    margin: 5vh auto;

    grid-template-columns: auto auto;
    grid-template-rows: 75px auto auto auto;

    gap: 10px;
}
.gridElement{
    background-color: aquamarine;
    border: 3px solid blue;

    padding: 10px 5px 10px 5px;
}
.g1{
    grid-area: 1 / 1 / span 1 / span 2;
}
.g2{
    grid-area: 2 / 1 / span 2 / span 1;
}
.g3{
    grid-area: 2 / 2 / span 1 / span 1;
}
.g4{
    grid-area: 3 / 2 / span 2 / span 1;
}
.g5{
    grid-area: 4 / 1 / span 1 / span 1;
}