@charset "UTF-8";
/*  
Author: David wysocki
Course: ITWP 1000
File: styles.css
Hello, this is my CSS for my Top Five ttng songs.
*/
body {
 /* this is the new backround covering the old one that i orriganly had! */   
 background:rgb(78, 0, 0) url(R.jpg) no-repeat fixed center;
  }
  
  
 


#number5 {
    
    color:pink;
    padding: 80px;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;
    
}

#number4 {
    
    color:rgb(0, 174, 255);
    padding: 80px;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;

}

#number3 {
    
    color:rgb(0, 255, 85);
    padding: 80px;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;

}

#number2 {
    
    color:gold;
    padding: 80px;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;

}

#number1 {
    
    color:fuchsia;
    padding: 80px;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;

}

/* this is the web font that you wanted created along with font whight and font variant*/
#header {
    font-family: 'BodyCopy';
    font-size: 74px;
    color: aliceblue;
    text-align: center;
    font-weight: normal;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;
    text-shadow: 2px 2px red;
}


@font-face {
    font-family: "BodyCopy";
    src: local("style.ttf"), local(BodyCopy),
    url("style.ttf");
}


#title {
    font-family: 'BodyCopy';
    font-size: 40px;
    color: aliceblue;
    text-align: center;
    font-weight: normal;
    font-variant: small-caps;
    letter-spacing: 4px;
    word-spacing: 2px;
    line-height: 1.1px;
    text-transform: uppercase;
    text-shadow: 2px 2px red;


}

.P1 {

font-family: Arial, Helvetica, sans-serif;
color: yellow;
text-align: justify;
font-size: 28px;
font: italic;
font-weight: bolder;
font-variant: small-caps;
line-height: 1.5;
text-indent: 40px;
background: rgba(161, 23, 5, 0.1);
}


.P2 {
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
    text-align: center;
    font-size: 28px;
    font: italic;
    font-weight: bolder;
    font-variant: small-caps;

}

.ttng {

text-align: center;
font-size: 30px;
color: rgb(255, 30, 0);
}

a {
    text-decoration: none;
    font-size: 2em;
}

a:link {
    color: darkred;
    border-bottom: 1px solid red;
}

a:visited{
    color: darkred;
    border-bottom: 1px solid red;
}

a:hover {
    color: red;
    border-bottom: 1px solid pink;
}

a:active {
    color: pink;
    border-bottom: 1px solid pink;
}