/* 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." */
   
   header { background-color: thistle; color: indigo; text-align: center; font-family: Georgia; position: fixed; 
   width: 98%; margin: 0; padding: 0; border: 5px solid #483D8B;}
   
.rainbow {
    font-size: 42px;
    font-family: Georgia;
    margin: 0; padding: 0;
    vertical-align: middle;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
    animation: rainbow-color-change 3s linear infinite alternate; }
@keyframes rainbow-color-change {
    0%, 100% { color: #ff0000; } /* Red */
    14% { color: #ff8b00; } /* Orange */
    28% { color: #e8ff00; } /* Yellow */
    42% { color: #5dff00; } /* Green */
    56% { color: #00b9ff; } /* Blue */
    70% { color: #5d00ff; } /* Indigo */
    84% { color: #e800ff; } /* Violet */ }

body {
  background-color: lavender;
  background-image: url("https://the-color-of-the-fire.neocities.org/fishbg.png");
  background-repeat: no-repeat;
   background-attachment: fixed;
  background-size: cover;
  color: indigo;
  font-family: Georgia;
}

div { background-color: thistle; color: indigo; width: 15%; text-align: center; float:left; border: 5px solid #483D8B;  position: relative; left: 30px; height: 400px}
article { background-color: thistle; color: indigo; width: 50%; text-align: center; float:left; border: 5px solid #483D8B;  position: relative; left: 100px;}
.shijima1 {width: 5%; margin: 0; padding: 0; float: left; vertical-align: middle; }
.shijima2 {width: 5%; margin: 0; padding: 0; float: right; vertical-align: middle; }
.shimeji { float: right; width: 15%; border: 5px solid #FFF;}

