body {
    margin: 0;
    overflow: hidden;
    font-family: system-ui, sans-serif;
}

#cat {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
}

img {
    position: absolute;
}

.container {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100vh;
}

.top {
    background-image: url("images/background.jpg");
    background-size: 100% 100%;
    background-position: center; /* center the image */
    position: relative;
}

.bottom {
    border: black solid 1px;
    display: grid;
    grid-template-columns: 50% 50%;

}

#blurb {
    font-size: small;
    padding: 10px;
    border: black solid 1px;
}

.intro_col {
    padding: 10px;
    border: black solid 1px;
}

.location_col {
    padding: 10px;
    border: black solid 1px;
}

.authorship {
    font-size: xx-small;
}

p {
    margin-top: 0;
}

h1 {
    font-size: medium;
    margin-top: 0
}
