/*
Purpose: Basic style sheet for Week 1 Homework
Author: Rachel Lincoln
Class: ITWP 1050 V0851 2023WI
This is Week 1 Homework to create paragraphs of inforamtion, add a picture(s), and external CSS file linked to original page
Also 2 classes and 2 selectors */

/* body and color of page */
body {
    background-color: rgb(255, 252, 224);
    font-family: Arial, Helvetica, sans-serif;
}
/* changing color, size and font style */
h1{
    color:rgb(253, 136, 63);
    font-size: 36px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    
}

/*using class to center instead of inline*/
.myh1{
    text-align: center;
}

/*using class to center instead of inine*/
.myh2{
    text-align: center;

}
/* changing color and font style*/
h2{
    color:hsl(0, 93%, 56%);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/*using class to align instead of inline*/
myh3{
    text-align: left;
}

/* changing color and font style*/
h3{
    color:rgb(72, 161, 196);
    font-family: Georgia, 'Times New Roman', Times, serif;

}

/*Using ID to center validation*/
#myvalidation{
    text-align: center;

}

/*Using ID to center validation*/
#myval{
    text-align: center;

}


/* Adding spacing for easier reading*/

footer{
    padding-top: 30px ;
}

/*Using ID to center footer*/
#myfooter{
    text-align: center;

}

/*Using ID to center footer*/
#foot{
    text-align: center;

}
