/* 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/dd68297e9114f3b7af910c3638ec2dff/83cc14f07f1b2ced-ff/s1280x1920/1e1d7d0a95fd97b2a4cd18a34c0c2da47ae07666.gifv);
  color: black;
  font-family: "Schoolbell", cursive;
  position: relative
}

h1 {text-align: center;}
p {text-align: center;}
nav {text-align: center;}

@font-face {
  font-family: 'CuteCat';
  src: url('CuteCat.woff2') format('woff2'),
       url('CuteCat.woff') format('woff');
}

.henny-penny-regular {
  font-family: "Henny Penny", cursive;
  font-weight: 400;
  font-style: normal;
}

h1 {
font-family: "Henny Penny", cursive;
font-size: 85px;
}

p {
  font-size: 18px; 
  color: #30474a;
  font-family: "Schoolbell", cursive;
  margin: 0.15em 0;
}

.schoolbell-regular {
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
}

.site wrapper {
position: relative
}

.container {
  display: grid;
  grid-template-areas:
    "header header header" 
    "sidebar main right"  
    "footer footer footer";
	grid-template-columns: minmax(200px, 1fr) 2fr minmax(75px, 1fr);
  grid-gap: 0;   
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  border: 29px solid transparent;
  border-image: url(https://64.media.tumblr.com/a3bbf7b3eb1c2d7c72540fc9e12a586a/4a45fd1cdbc46393-90/s540x810/35249526d2f73b292c70d8999f41b98a0021f5db.pnj) 39 39 round;
  position: relative;
}

header, aside, main, right-aside, footer {
  padding: 5px;
  background-color: white;
  border: 1px solid black;
  border-radius: 0;
  box-shadow: 0 0 5px;
}

header { grid-area: header; }
aside { grid-area: sidebar; }
main { grid-area: main; }
footer { grid-area: footer; }

header {
  grid-area: header;
  padding: 0;
  background-image: url(https://i.pinimg.com/736x/9c/a5/a1/9ca5a15150bca36ab3bf1918d4267367.jpg);
  background-size: cover;       
  background-position: center;   
  background-repeat: no-repeat;  
  color: white;                  
  height: 200px;
  position: relative;
}

.site-title {
  position: absolute;
  pointer-events: none;
  height: auto;
  top: 60px;
  left: 4%;
  z-index: 999;
  font-size: 100px;
  color: #5b9098;
    text-shadow:
    0 0 5px #b4e0ec,
    0 0 10px #b4e0ec,
    0 0 20px #b4e0ec,
    0 0 40px #b4e0ec,
    0 0 80px #b4e0ec;
}

.layout-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 6rem;
}


.header-chiikawa img {
  position: absolute;
  top: -10px;
  left: 70%;
  transform: translateX(-60%);
  width: clamp(300px, 10vw, 100px);
  height: auto;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% {transform: translateY(-10px) }
  100% {transform: translateY(0) }
}

@keyframes rotate {
  0% {transform: rotate(3deg) }
  50% {transform: rotate(3deg) }
  51% {transform: rotate(-3deg) }
  100% {transform: rotate(-3deg) }
}

.rotating {
  animation: rotate 0.7s infinite;
}

.floating {
  animation: float 2s ease-in-out infinite;
}

.float-delay {
  animation-delay: 1s;
}

.scottie-sidebar {
  width: 100px;
  height: auto;
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #67B5BD;
  align-items: center;
  height: 100%;
  margin-right: 13px;
}

.nav-list {
  list-style: none;
  padding: 0%;
  margin-left: 20px;
  margin-bottom: 68px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.nav-list li {
position: relative;
padding-left: 28px;
}

.nav-list li:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  background-image: url('https://64.media.tumblr.com/259927dcbec84d1a208000895034b018/decf8596ce8bd5ba-30/s75x75_c1/b3019a1ccd4fe2d637b35606bb12c6b74e65dec8.gifv');
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-list li:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  background-image: url('https://64.media.tumblr.com/cdaa3a2c1c7637b9e21bf1db58517bab/71b4170f7ebbe0bb-f4/s75x75_c1/78def11d9a4363cc11194c0a2eb412044042746d.gifv');
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-list li:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-image: url('https://64.media.tumblr.com/84f06221bd523a07c364463c7c6993cf/db7ce6708c01e3ab-51/s75x75_c1/540b6dd0118fe384c4e4f9af79fc0c2d22e225a2.gifv');
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-list li:nth-child(4)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-image: url('https://64.media.tumblr.com/f063008e869a86854d988b75f3338fa7/3d7f03542b608453-27/s75x75_c1/5e78dc05d19a8eb72b2c95417b95709a658dfab0.gifv');
  background-size: contain;
  background-repeat: no-repeat;
}
.nav-list li:nth-child(5)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-image: url('https://64.media.tumblr.com/55dbc4f0f33ead980db1da87a3199885/b18aff3ce9323114-a0/s75x75_c1/ecd90bafd7caeb0e283399364cbda83c8b29e34a.gifv');
  background-size: contain;
  background-repeat: no-repeat;
}

a {
  color: #4f9da5;
  text-decoration: underline;
  transition: all 0.3s ease;
  display: inline-block;
}

a:hover {
  color: #8febe4;
  transform: scale(1.05);
}

img {
  transition: 0.3s ease, filter 0.3s ease;
  display: block;
  cursor: pointer;
  position: relative;
}

img:hover {
  transform: rotate(2deg);
}
  
  
aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height:100%;
  background: linear-gradient(to bottom, #ffffff, #c4faff)
}

.right-aside {
  grid-area: right;
  background-image: url(https://i.pinimg.com/736x/11/2c/11/112c1170d41c78a903005d395b0bab9b.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 300px;
}

.guestbook {
  border: 2px solid;
  background-color: #ffffff;
  padding: 0px;
}

iframe {
  width: 100%;
  height: 100px;
  border: none;
}

.swirl-divider {
  width: 550px;
  height: auto;
}

.main-image {
  height: 200px;
  width: auto;
  border: none;
}

.glitterlps {
  height: 85px;
  width: auto;
  margin-left: 15px;
  margin-bottom: 10px;
  margin-top: -5px;
}

.site-intro-text {
background-image: url(https://i.pinimg.com/1200x/f5/87/cb/f587cbd084def271951a5ff2402b0abb.jpg);
background-size: 300px;
box-shadow:
  0 0 2px  #b4e0ec ,
    0 0 2px  #b4e0ec,
    0 0 5px  #b4e0ec,
    0 0 10px  #b4e0ec,
    0 0 20px  #b4e0ec;
    padding: 5px;
    width: 320px;
    color:   #4f3b2b;
    height: auto;
    margin-bottom: 20px;
}

.main-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

main {
  display: grid;
}

.stamps {
  display: flex;
  gap: 4px;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}

.right-column,
.middle-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.stamps img {
  width: 80px;
  height: auto;
}


  






