/* 
    Shane John
    06/14/2025
    CPSC 3750
    program exam #1 
    Grade A...I Think
*/

/* Full Page Font Setting */
*
{
    font-family: "Finger Paint", Arial;
}

/* Main Body Settings*/
body 
{
    background-image: url("image.png"); 
    background-repeat: repeat;
    text-align: center;
}

/* Top container settings for headings, input, and start button*/
.start_container
{
    max-width: 50%;
    margin: auto;
    margin-top: 80px;
    background-color: rgba(122, 122, 231, 0.792);
    text-align:center;
    color: #3f4247;
    padding: 2%;
    border-radius: 50px;
    border-width: 50px;
    border-color: rgb(255, 255, 255);
    
}
.start_container h1,h2
{   
    text-align: center;
    margin: auto;
    padding: 1.5%;
    width:80%;
    background-color: #ffffff;
    border-radius: 20px;
}
.start_container input 
{
    text-align: center;
    font-size: 15px;
    padding: 8px;
    width: auto;
    max-width: 300px;
    margin: auto;
    margin-top: 40px;
    border-radius: 10px;
}
.start_container button
{
    color: #ffffff;
    background-color: #575a5f;
    width: auto;
    padding: 10px;
    margin: 10px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 10px;
}

/* lower list container settings for each list "section", the list itself, and the SUM button*/
.lists_container
{   
    margin: 3%;
    justify-content: space-between;
    margin-top: 20px;
    background-color: rgba(197, 197, 255, 0.856);
    display:flex;
    text-align: center;
    border-radius: 50px;
    
}
.list_section
{
    background-color: #f9f9fb;
    padding: 10px;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 20px;
    width: 36%;
    transition: background-color 0.5s ease;
}
.list_section ul
{
    list-style-type: none;
    text-align: center;
}
.list_section li
{
    text-align: center;
}
.list_section p
{
    margin-left: 48px;
}
.list_section button
{
    color: #ffffff;
    background-color: #575a5f;
    width: auto;
    padding: 10px;
    margin: 10px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 10px;
    margin-left: 50px;
}











