
@keyframes rotateEffect {
  0% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}

@keyframes scaleEffect {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes diagonalScroll {
  0% {
    background-position: 0 0; /* Starting position (top-left) */
  }
  100% {
    background-position: 100% 100%; /* Ending position (bottom-right) */
  }
}

body {
  background-image: url(images/eizouken-smile.gif);
  background-repeat: repeat;
  animation: diagonalScroll 60s linear infinite; 
  color: black;
  font-family: 'MainPixel';
}

.mainheader {
  color: DarkSlateBlue;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 3mm dashed DarkSlateBlue;
  border-bottom: 3mm dashed DarkSlateBlue;
  font-family: 'KiwiSoda';
  font-size: 1000%;
  text-align: center;
}


.col_container {
	display: flex;
	flex-direction: row;
}

.container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 1em;
  padding-left: 1em;
  border-right: 4mm dashed DarkSlateBlue;
  background-color: rgba(255, 255, 255, 0.3);
}

.container2, .container3 {
	flex-grow: 1;
}
.container2 {
	background-color: rgba(255, 255, 255, 0.95);
	width: 500px;
	margin: 0 16px;
	padding: 1.2em 2em;
	font-size: 140%;
}

.container3 {
	flex-grow: 1;
}

.intro {
  color: DarkSlateBlue;
  font-style: italic;
  font-size: 110%;
  font-family: 'KiwiSoda';
  background-color: White;
  border: 4mm ridge DeepPink;
  padding: 1em;
  display: inline-block;
  text-align: center;
}

.channel_image {
  width: 150px;
  height: auto;
  padding-top: 16px;
  animation: scaleEffect 3s ease-in-out infinite;
}

.pink_border {
  color: black;
  background-color: White;
  border: 4mm ridge DeepPink;
  font-family: 'KiwiSoda';
  font-weight: bold;
  font-size: 300%;
  display: inline-block;
  text-align: center;
  animation: rotateEffect 2s infinite ease-in-out;
}

.attop {
  font-size: 200%;
}
.attop:link {
  color: Black;
  font-weight: bold;
  text-decoration: none;
}
.attop:visited {
  color: Black;  
}
.attop:hover {
  color: black;
  text-decoration: underline;
}

.interests {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1em;
  padding-top: 1px;
  padding-bottom: 0.1em;
  border: 2mm dashed DeepPink;
  font-size: 100%;
  font-family: 'MainPixel';
}

span {
	font-size: 150%;
	font-weight: bold;
}

.thelist {
  padding: 0.1em 1em;
  margin-bottom: 2em;
}
.thelist li {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  font-size: 120%
}
.thelist a {
	color: Black;
	transition: transform 0.3s ease, color 0.3s ease; 
}
.thelist a:hover {
	transform: scale(1.1);
	color: #ff69b4;
}
.thelist a:visited {
	color: Black;
}
.thelist a:link {
	color: Black;
}

.updates {
  font-size: 90%;
  font-style: italic;
  color: black;
  font-family: 'MainPixel';
}

.guestbook-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}

.guestbook-link {
  background-color: #001f4d;
  padding: 0.5em;
  border-radius: 6px;
  display: inline-block;
  max-width: 100%;
}

.guestbook-image {
  max-width: 100%;
  height: auto;
  display: block;
}
