/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
 background-image: url('https://64.media.tumblr.com/c4f89a5030192e1801e10bc79734bfff/tumblr_motf04WbE41qz4zj1o1_400.gif');
}

/* frontpage img */
.frontpageImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Table for navigation */
table, th, td {
  border: 1px solid black;
}

th, td {
  background-color: #FFFFFF;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* Text next to kitty */
.kitty {
 display: grid;
 align-items: center; 
 grid-template-columns: 1fr 1fr 1fr;
 column-gap: 5px;
}

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

.text {
  font-size: 40px;
}
