/*FONTS*/
    @font-face {
      font-family: "PressStart";
      src: url("../fonts/PressStart2P.ttf");
    }

  body {
    font-family: "PressStart", serif;
    background-color: #090a0a;
    margin: 0;
    padding: 0;
  }  

/*BACKGROUND FOR LANDING PAGE*/
    /*Gradient Backgorund*/
    #main-column {
      background: linear-gradient(to bottom, #4074a5 34%, #061524 75%);
      width: 800px;
      background-size: 100% 850px;
      background-repeat: no-repeat;
      background-color: #090a0a;
      height: 850px;
      margin: 0 auto;
      position: relative;
    }
     
    /*Noise overlay for discount dithering*/
    #main-column::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 850px;
      background-image: url("../images/landing/noise.png");
      background-size: 500px 500px;
      opacity: 0.01;
      pointer-events: none;
      image-rendering: pixelated;
    }

    /*Content box formating*/
    #content-box {
      width: 680px;
      height: 420px;
      margin: 20px auto;
      background-color: rgba(0, 0, 0, 0.2);
      border: 10px groove #3f1d16;
      border-radius: 5px;
      box-shadow: 0 0 6px #d5b95d;
      padding: 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

/*Font Effects for landing page */
    h1 {
      color: #d5b95d;
      text-shadow: 2px 2px 4px #000000;
      text-align: center;
      margin: 0 0 0px 0;
    }
        
    p {
    color: #c8c8c8;
    text-shadow: 1px 1px 3px #000000;
    }

/*image formatting for landing page */
#content-box a img {
  display: block;
  margin: 0 auto;
  padding-top: 15px;
  transition: filter 0.2s, transform 0.2s;
}

#content-box a img:hover {
  filter: brightness(1.3) drop-shadow(0 0 8px #d5b95d);
  transform: scale(1.05);
}


/*Mucsic Player Button*/
  #music-btn {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: -20px;
    font-family: sans-serif;
    background-color: transparent;
    color: #c8c8c8;
    opacity: 0.6;
    border: 0px solid #d5b95d;
    cursor: pointer;
    font-size: 1.2em;
    width: 60px;
    height: 30px;
    text-align: center;
    line-height: 30px;
  }

  /* Bottom bar with webring and music button */
  #bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  align-self: stretch;  /* overrides the parent's align-items: center */
  width: 100%;
  }

  #webring {
    font-size: 10px;
    color: #c8c8c8;
    display: flex;
    align-items: center;
    gap: 6px;  /* tight gap between arrows and text */
  }

  #webring a {
    color: #d5b95d;
    text-decoration: none;
  }

  #webring a:hover {
    text-decoration: underline;
  }