/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
  
}
.r1c1 { grid-area: greeting; background-color:grey
 }
.r1c2 { grid-area: header;
  background-color: black; 
  }
.r2c1 { grid-area: nav; }
.r2c2 { grid-area: picture; 
border-radius:0%;
border-color: green;}
.r2c3 { grid-area: links; }
.r2c4 { grid-area: info; }
.r3c1 { grid-area: foot;
background-color:grey}

.grid-container {
  display: grid;
  grid-template-areas:
    'greeting header header'
    'picture picture picture'
    'picture picture picture'
    'nav nav nav'
    'links info info'
    'foot foot foot';
  gap: 0px;
  
  padding: 20px;
  border-radius:2%
}

.grid-container > div {
  background-color: grey;
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
  border:5px;
  border-color:black
}


div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 5px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: right;
  width: 15.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 99.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
p{
  font-size: medium;
  row-gap:unset;
  font-family:Georgia, 'Times New Roman', Times, serif
}
h1{font-size:xx-large}
ul {
  list-style-type: none;
  margin: 0;
  padding: 10;
  overflow: hidden;
  
}

li {
  float:left;
  
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 110px;
  text-decoration:wavy;
  background-color:gray;font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-style: normal;
}

li a:hover {
  background-color:black;
}
.henny-penny-regular {
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-style: normal;
}
body {
  
  margin: 0;
  padding: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1 part for logo, 2 parts for info */
  gap: 0px; /* Space between sections */
  padding: 20px;
  border-radius:2%;
  
}

.logo-section {
  display: flex;
  justify-content: center; /* Center the logo */
  align-items: center;
}

.logo {
  max-width: 100%; /* Responsive logo */
  height: auto;
}

.info-section {
  display: flex;
  flex-direction: column; /* Stack text vertically */
  justify-content: center; /* Center text vertically */
}

h1 {
  font-size: 24px;
  margin: 0 0 10px; /* Margin below the heading */
}

p {
  font-size: 16px;
  line-height: 1.5; /* Improve readability */
  
}
.house{
  border-radius:0%
}
.creep{
  border-radius:1%;
  object-fit:cover;
  width:1080px
}
.creepfont {
  font-family: "Henny Penny", system-ui;
  font-weight: 400;
  font-style: normal;
}
