/* 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://youtuube.neocities.org/Backgrounds/design.gif"); 
  background-color: black;
  font-family: "Lucida Console", monospace;
}
 /* main grid */
.main {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 7px;
grid-row-gap: 7px;
}

/* body*/
.body { grid-area: 1 / 2 / 6 / 5; 
    
}
/* ??? */
.portrait { grid-area: 1 / 5 / 6 / 6; 
    
}
/* navigation bar */
.navbar { grid-area: 1 / 1 / 5 / 2; 
 
}
/* webrings */
.webrings { grid-area: 5 / 1 / 6 / 2; 
    color : #00FF00;
    
  } 
  


header, footer {
  margin: 25px;
}

h3 {
  color: #00FF00;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li a {
  display: block;
  background-color: black;
  color: #00FF00;
  padding: 8px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #00FF00;
  color: black;
}

a:link {
  color : #00FF00;
  
} 

a:visited {
  color : #00FF00;
}


.scroll-left {
  height: 50px;
  overflow: hidden;
 position: relative;
 background: black;
 color: #00FF00;
 border: 3px solid #00FF00;
 margin: 7px
 
}

.scroll-left p {
  
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 
 transform: translateX(100%);
 animation: scroll-left 15s linear infinite;
 
}

@keyframes scroll-left {
 0% {
   transform: translateX(100%);
 }
 100% {
  transform: translateX(-100%); 
 }
}
  

p {
  color: #00FF00; /*if a colour is specified here, it overrides .class-name */
  /*border: 2px solid #00FF00;*/
  padding: 5px;
  margin: 25px;  
}

