:root {
    --blue-gradient: linear-gradient(#87CEEB, #4169E1); 
  }

html, body {
  margin: 0;
  padding: 0;
}
  
  #boxheader {
    background: var(--blue-gradient);
    background-size: auto 100%;
    text-align: left;
    color: #cdebff;
    padding: 5px 0px 5px 5px;
}

#box1{
    width: calc(100% - 3px);
    margin: auto;
    color: black;
    border: 1px solid #4169E1;
    margin-top: 10px;


    }
    #box2{
        width: 100%;
        border: px solid #4169E1;
        display: flex;
        background-color: #F0F9FF;
        }


     #text {
                margin-top: 15px;
                font-family: 'MS Gothic'; 
                flex-direction: column;
                text-align: center; /* Optional: Center text horizontally */
                margin: 15px 0px 15px 0px;
                width: 50%;
                
            }
             
    #picturebox {
                margin: 15px 0px 15px 0px;
                width: 45%;
            }
    #picture{
        width: 100%;
    }

    #container-box3{
                border: 1px solid #4169E1;
                margin-top: 5px;
                justify-content: center;
                margin: auto;
                margin-top: 10px;
                width: calc(100% - 3px);
                }

    #boxheader {
    background: var(--blue-gradient);
    background-size: auto 100%;
    text-align: left;
    color: #cdebff;
    padding: 5px 0px 5px 5px;
}


    #container-box2a{
        width: 100%;
        background-color: #F0F9FF;
        display: flex;
        overflow-y: auto;
        height: 200px;
        }

        .title{
        font-weight: 500;
        font-family: 'MS Gothic'; 
        font-size: 18px;
    }

        #credit-list {
        font-family: 'MS Gothic';
        text-align: center; /* Keeps the "Please give..." text centered */
        margin-top: 20px;
        
    }

    #credit-list ul {
    list-style: none;
    padding: 0;
    display: inline-block; 
    text-align: left; /* This keeps the labels aligned to each other */
    margin: auto;
    margin-top: 20px;
    
}

#credit-list li {
    margin-bottom: 5px;
    display: flex;         /* Enables alignment tools */
    align-items: center;   /* Vertically centers icon and text */
}

.social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;        /* Prevents the icon from squishing */
}

#credit-list h {
    display: inline-block;
    width: 130px; 
    text-align: left;
    font-weight: normal;
    /* This ensures lines WITHOUT icons align with lines WITH icons */
    margin-left: 0px; 
}

/* If a row doesn't have an icon, we add 23px (18px icon + 5px margin) 
   of empty space so the text still lines up perfectly */
#credit-list li:not(:has(img)) h {
    padding-left: 23px; 
}

#credit-list a {
    /* Removed float: right to keep it stuck to the label */
    text-align: left;
}

    #leftside{
        float: left;
        width: calc(50% - 5px);
        overflow: hidden;
        box-sizing: border-box;
        }

#rightside{
        float: right;
        width: calc(50% - 5px);
        display: block;
        overflow: hidden;
        box-sizing: border-box;
        }

#middle{
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        }