/* 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 {
  text-align: center;
  overflow: scroll;
  background-color: white;
  color: black;
  font-family: "BIZ UDMincho", serif;
  background-image: url('sky.jpeg'); /* Replace with your image path */
  background-size: cover; /* Ensures the image covers the area without stretching */
  background-position: center center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents repeating */
  margin: 0;
  height: 100vh; /* Makes sure body height fills the viewport */
}
.frame {
    pointer-events: none;
    position: fixed; /* keeps the image fixed on the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('frame.gif'); /* replace with your image path */
    background-size: cover; /* cover the entire screen */
    background-position: center center;
    z-index: 9999; /* highest layering */
}
.main{
  padding: 10px;
  text-align: justify;
  text-justify: inter-word;
  overflow: scroll;
  width: 720px;
  height: 540px;
  background-color: white;
  border: 3px solid green;
  margin: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}
.navi{
  overflow: scroll;
  position: fixed;
  z-index: 1;
  background: #961111;
  background: linear-gradient(180deg, rgba(150, 17, 17, 1) 0%, rgba(94, 25, 25, 1) 100%);
  border: 3px ridge blue;
  text-align: center;
  top: 0;
  float: left;
  height: 1079px;
  width: 275px;
  background-color: white;
}

.anik{
  overflow: scroll;
  right: 0;
  position: fixed;
  z-index: 1;
  background: #22C1C3;
  background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
  border: 3px ridge deeppink;
  text-align: center;
  top: 0;
  height: 1079px;
  width: 275px;
  background-color: white;
}

h1 {
  margin: 1px 5px;
  text-shadow: 3px 3px black;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  -webkit-text-stroke: 1px #000000;
  animation: colorRotate 3s linear 0s infinite;
}

@keyframes colorRotate {
  from {
    color: #ff0000;
  }
  10% {
    color: #ffff00;
  }
  50% {
    color: #00ff00;
  }
  75% {
    color: #00ffff;
  }
  100% {
    color: #0000ff;
  }
}

a:link, a:visited, a:active {
  color: deeppink;
  background-color: chartreuse;
}

a:hover {
  color: white;
  background-color: orange;
}