/* CSS Style Sheet for ITWP 1150 Project 1 - Part 1 */
/* Edith Harvey */

/* body main style */
body {
    font-family: "Comic Sans MS", "Century Gothic", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000; /* black text */
    background-color: #f7f563; /* light yellow background color for the whole body */
}

h1 {
    font-size: 2em;
    color: #990099; /* darker purple */
}
h2 {
    font-size: 1.5em;
    color: #800080; /* darker purple than h1 tag*/
}
h3 {
    font-size: 1.5em;
    color: #800080; /* darker purple than h1 tag*/
}

h4 {
    font-size: 1.5em;
    color: #800080; /* darker purple than h1 tag*/
}

/* Styling for ID Container */
#container {
    padding: 30px;
    width: 50%;
    height: 150px;
    background-color: #FFFFFF; /* white */
    border-radius: 25%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 5px #666666;
}

/* Styling for ID favoritescontainer */
#favorites {
    padding: 30px;
    width: 35%;
    height: 125px;
    background-color: #c3d8e4; /* light blue/gray */
    border-radius: 25%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 5px #666666;
    color: #000000;
}

/* favecolorrow class */
  .favecolorrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.favequote {
    color: #ff00ff; /* from swtch 1 */
}

.favecolor {
    color: #9900cc; /* from swatch 5 */
}

.birth {
    color: #cc0099; /* from swatch 3 */
}

/* class for centering text */
.center {
    text-align: center;
}

/* Class for Centeringt Image */
.imgcenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* id tag created for dislaimer/footnote before validation line */
#footnote {
    color: #000000;
    font-size: 1em;
    text-align: center;
}