@charset "utf-8";

/*
   New index page style sheet
   Author: Nadia Fatima Ali   
   Date:   September 24, 2025
   
   Filename: index_styles.css

*/

/* Html Styles */
html#homepage {
    background: linear-gradient(rgb(224, 190, 178), rgb(198, 222, 227),
                                rgba(39, 153, 168));
}   

html.pages {
    height: 100%;
    background: linear-gradient(to left bottom, rgb(224, 190, 178) 15%, rgba(39, 153, 168, 0.716));
}

/* Table Styles */
table {
    box-shadow: rgb(102, 97, 91) 5px 0px 25px,
                rgb(102, 97, 91) -5px 0px 25px;
}

/* Return to Homepage link Styles */
h5 {
    text-align: center;
}

h5 a:link {
    color: rgb(34, 4, 99);
    text-decoration: none;
}

h5 a:hover {
    color:rgb(176, 94, 65);
    text-decoration: underline;
}

/* List Styles */
ul > li {
    list-style: url(images/point.png) inside;
    font-weight: bold;
    color: rgb(34, 4, 99);
}

ul > li > ul > li {
    list-style: disc outside;
    font-weight: bold;
    color: rgb(34, 4, 99);
}

ul > li > a:link{
    color: rgb(34, 4, 99);
    text-decoration: none;
}

ul > li > a {
  color: inherit;
}

ul > li > a:hover{
    color:rgb(0, 87, 180);
    text-decoration: underline;
}