/* Homework Week 4 
by: Rachel Lincoln
Class: ITWP 1050 V0851 2023WI
Working on Lists and Tables, using an image for a cursor, changing bullet points per list 
*/

/*Adding the Body to color the background and font colors, font families to curssive
 */
body{
    background-image: url(images/wedding.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-color:black;
    color:rgb(255, 255, 255);
    font-family: cursive;
    /* cursor image change*/
    cursor: url(images/heart20.png) 20 20, pointer;
    /*changing quote styles - had a tutoring session for this. This is different than the up and down q's 
    since this one is curved and looks better*/
    quotes:initial;
}

/*Adding bullet style outside of the lists*/
.list1{
    /*list-style-type: circle;
    list-style-position: outside; */
    /*making the style declarations in 1 line */
    list-style: circle outside;
}

/* Creating my own bullet point inside the lists */
.list2{
    /*list-style-image: url(images/heart30.jpg);
    list-style-position: inside; */
    /*Combining style declaration in 1 line*/
    list-style: url(images/heart2.jpg) inside;
    
    
}

/*Adding Table Stylings*/
table{
    table-layout: auto;
    border-spacing: 6px;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width:auto;
    
}

/*centering table for readability*/
.center{
    margin-left: auto;
    margin-right: auto;
}

td, th{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:rgb(255, 255, 255);
    height:auto;
    text-align: center;
    padding: 7px;
    background-color: grey;
}

/*foramtting h2 to be larger and centered with diff color*/
h2{
    font-size: x-large;
    font-weight: bold;
    color:rgba(255,255,255,1.5);
    text-align: center;
}

/*formating h3 to be small and gray*/
h3{
    font-size: 11px;
    color:lightsteelblue;
}

/*formating h4 for book title quote to be small and italic and center */
h4{
    font-size:small;
    font-style: italic;
    text-align: right;
}

/*Formatting for h5 for quote to be centered */
h5{
    font-size: 36px;
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* changing footer p styling - and size  */
.footer{
    font-size: 13px;
    
}

/*Adding png before and after top paragraph */
p::before{
    content: url(images/heart20.png);
}

p::after{
    content: url(images/heart20.png);
}

