/* 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 {
  font-size: 6pt;
  background-color: black;
  color: #EB0A0A;
  font-family: 'Pokemon Classic';
}


marquee2 {
    width: 300px;
    padding: 10px 0;
    background-color: pink;
      }

/* unvisited link */
a:link {
  color: #000;
}

/* visited link */
a:visited {
  color: #000;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: pink;
}



h2 {
  text-align: left;
}


/* columns */
.menu{
     width:155px;
     height:300px;
     top: 48px;
     position: fixed;
     float: left;
     border:1px solid red;
     background-color: yellow;
     text-shadow: 1px 1px 2px pink;
 }


 
 
 
.first{
    width:400px;
    height:400px;
    position: absolute;
    left: 160px;
    margin: 8px;
    top: 40px;
    border: solid 1px pink;
    background-image: url('https://subandwoofa.neocities.org/DONE_assets/woofa_angel.png');
}


.second{
    width: 400px;
    height:400px;
    position: absolute;
    top: 1000px;
    margin: -2px;
    border: solid 1px yellow;
    overflow: auto;
    background-image: url('https://bbobbo.neocities.org/DONE_assets/hammerdither1.png');
}

.third{
  
  height: 200px;
  position: center;
  margin: 2px;
  border: solid 1px black;
  background-color: transparent;
  cursor: move;
}

.app{
    left: 500px;
    top: 500px;
    position: relative;
    color: white;
    border: dotted white;
    padding: 0.5%;
    display: block;
    width: 100px;
    height: 100px;
    cursor: move;
}





body {
  background-image: url("https://subandwoofa.neocities.org/vkgd.png");
  background-repeat: repeat-x+y;
}



footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: left;
}
