/* 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: rgb(255,255,255);
      background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 100%);
      min-height: 1000px;
      color: black;
      font-family: Courier;
      }  
  .site-header {
      display: block;
      height: 25px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 1px;
      margin-bottom: 1px;
      position: sticky;
      top: 0;
      background: none;
      }
  .site-header2 {
      display: inline-block;
      height: 10px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 1px;
      margin-bottom: 1px;
      position: relative;
      top: 0;
      background: none;
      }
  .header-link {
      display: block;
      height: 25%;
      margin: 0;
      padding: 10px;
      list-style: none;
      }
  .scroll-left {
      height: 100px;	
      overflow: hidden;
      position: sticky;
      top: 400px;
      background: none;
      z-index:-99;
      }
  .scroll-left p {
      position: absolute;
      width: 100%;
      height: 100%;
      margin: 0;
      line-height: 50px;
      text-align: center;
      font-family: Arial;
      font-size: 40px;
      color: pink;
      text-shadow: 2px 1px #fff;
      /* Starting position */
      transform:translateX(100%);
      /* Apply animation to this element */
      animation: scroll-left 10s linear infinite;
      }
      /* Move it (define the animation) */
      @keyframes scroll-left {
      0%   {
      transform: translateX(100%); 		
      }
      100% {
      transform: translateX(-100%); 
      }
      }
  .navbuttons1 {
      display: block;
      font-family: helvetica;
      font-size: 40px;
      text-shadow: 2px 1px #fff;
      position: absolute;
      top: 100px;
      left: 260px;
      color: black;
      transition: 2s;
      border-radius: 4px;
      }
  .navbuttons1:hover{
      background: rgba(255,255,255,0.2);
      color: pink;
      }
  .navbuttons2 {
      display: block;
      font-family: helvetica;
      font-size: 40px;
      text-shadow: 2px 1px #fff;
      position: absolute;
      top: 100px;
      left: 440px;
      color: black;
      transition: 2s;
      border-radius: 4px;
      }
  .navbuttons2:hover{
      background: rgba(255,255,255,0.2);
      color: pink;
      }
  .navbuttons3 {
      display: block;
      font-family: helvetica;
      font-size: 40px;
      text-shadow: 2px 1px #fff;
      position: absolute;
      top: 100px;
      left: 630px;
      color: black;
      transition: 2s;
      border-radius: 4px;
      }
  .navbuttons3:hover{
      background: rgba(255,255,255,0.2);
      color: pink;
      }
  .navbuttons4 {
      display: block;
      font-family: helvetica;
      font-size: 40px;
      text-shadow: 2px 1px #fff;
      position: absolute;
      top: 100px;
      left: 800px;
      color: black;
      transition: 2s;
      border-radius: 4px;
      }
  .navbuttons4:hover{
      background: rgba(255,255,255,0.2);
      color: pink;
      }
  .button {
      padding: 4px 4px;
      border: 0px outset buttonborder;
      border-radius: 3px;
      color: buttontext;
      background-color: clear;
      text-decoration: none;
      }
  .footerhome {
      font-size:12px; 
      fant-family:Courier;
      display:inline-block;
      position: relative;
      bottom:0px;
      right:0;
      }
  .album-section {
      display: block;
      width: 890px;
      height: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 25px;
      margin-bottom: 25px;
      border-style: solid;
      border-width: 2px;
      border-color: black;
      background: rgba(200,200,200,0.3);
      }
  .album-art,
  .album-music {
      padding: 20px;
      object-fit: cover;
      }
  .album-text {
      font-family: Courier;
      font-size: 12px;
      margin-top: 2px;
      margin-left: 45px;
      margin-right: 45px;
      padding:6px;
      width: 800px;
      text-align: justify;
      color: black;
      }
  .video-section {
      display: block;
      width: 890px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 25px;
      margin-bottom: 25px;
      border-style: solid;
      border-width: 2px;
      border-color: black;
      background: rgba(200,200,200,0.3);
      }
  .video {
    padding:24px;
    padding-bottom: 18px;
    }
  .video-text {
    font-family: Courier;
    font-size: 12px;
    margin-top: 2px;
    margin-left: 45px;
    margin-right: 45px;
    width: 800px;
    text-align: justify;
    color: black;
    padding:6px;
    }
  .headline {
    display: block;
    font-family: helvetica;
    font-size: 36px;
    font-weight: 200;
    margin:6px;
    color: black;
    text-align: center;
    }
  .newshighlight {
    display: block;
    position: absolute;
    top:450px;
    left:50px;
    width: 350px;
    font-family: Courier;
    font-size: 14px;
    border-style: solid;
    border-width: 2px;
    border-color: black;
    background:rgba(150,150,150,0.3);
    padding: 5px;
    text-align: justify;
    }
  .intropic {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-top:150px;
    width: 10%;
    z-index: 0;
    opacity: 0.3;
    }
  .headline {
      display: block;
      font-family: helvetica;
      font-size: 36px;
      font-weight: 200;
      margin:6px;
      color: black;
      text-align: center;
  }

