@charset "UTF-8";
/*  
Author: David wysocki
Course: ITWP 1000
File: styles.css
Hello, this is my CSS for my Top Five ttng songs.
*/
body {
    background-image: url("RRR.jpg");
    
  }

#number5 {
    
    color:pink;
    padding: 40px;
    text-align: center;
    
}

#number4 {
    
    color:rgb(0, 174, 255);
    padding: 40px;
    text-align: center;

}

#number3 {
    
    color:rgb(0, 255, 85);
    padding: 40px;
    text-align: center;

}

#number2 {
    
    color:gold;
    padding: 40px;
    text-align: center;

}

#number1 {
    
    color:fuchsia;
    padding: 40px;
    text-align: center;

}

#header {
    font-family: 'BodyCopy';
    font-size: 40px;
    color: aliceblue;
}


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


#title {
    text-align: center;
    font-size: 40px;
    color: aliceblue;


}

.P1 {

font-family: Arial, Helvetica, sans-serif;
color: aliceblue;
text-align: center;
font-size: 28px;

}

.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;
}