body {
    font-size: 20px;
    line-height: 30px;
    background-color: #212931;
}

#bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1200px; /* at least as wide as the main box */
    min-height: 100vh; /* Ensure it expands dynamically */
    background-color: #212931;
    background-image: url("pics/john-fowler-7Ym9rpYtSdA-unsplash.jpg");
    background-size: cover; /* Ensures full coverage */
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;     /* Creates a smooth scrolling effect */
    z-index: -1;
}

img {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}

img#temp_slice {
    width: 1080px;
    padding: 20px;
}

#note {
    float: left;
    width: 95%;
    position: fixed;
    color: white;
    text-align: right;
}

#Yang {
    height: 730px;
    width: 1200px;
    margin: auto;
    position: relative;
    top: 17px;
}

#big_name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 75px;
    color: rgb(255, 255, 255, 0.8);
    height: 100%;
    float: left;
    width: 62%;
    padding-top: 350px;
    padding-left: 110px;
    box-sizing: border-box;
    /*
    border: white dashed 5px;
    box-sizing: border-box;
    */
    
}

#basic_info {
    padding-top: 310px;
    color: white;
    height: 100%;
    float: right;
    width: 38%;
    text-align: right;
    box-sizing: border-box;
    line-height: 32px;
    font-size: 20px;
}

#basic_info a {
    color: white;
    text-decoration: none;
}

#basic_info a:hover {
    color: blue;
    text-decoration: none;
}

/* #top_home {
    height: 80px;
    width: 1200px;
    margin: auto;
} */

#top_home {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.9); Semi-transparent background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.this_nav {
    text-transform: uppercase;
    float: left;
    width: 25%;
    height: 60px;
    font-size: 30px;
    background-color: #ccc;
    position: relative;
}
.this_nav a {
    height: 46px;
    display: block;
    color: #000;
    border-bottom: 0;
    text-decoration: none;
    text-align: center;
    padding-top: 14px;
}
.this_nav:hover {
    background-color: #ccc;
}

.nav {
    text-transform: uppercase;
    float: left;
    width: 25%;
    height: 60px;
    font-size: 30px;
    background-color: rgb(150, 150, 150, 0.7);
    position: relative;
     /*border-bottom: #ccc solid 3px;*/
}

.nav a {
    height: 46px;
    display: block;
    border-bottom: 0;
    padding-top: 14px;
    text-decoration: none;
    text-align: center;
    color: black;
}


.nav a:hover {
    background-color: #ccc;
}

.main_box {
    width: 1120px;
    background-color: rgb(150, 150, 150, 0.7);
    color: rgb(20, 20, 20);
    font-size: 20px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    top: 5px;
    padding: 20px 40px;
}

.main_box ul {
    font-size: 22px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 10px;
}

#update {
    width: 1200px;
    font-family:'Courier New', Courier, monospace;
    font-size: 20px;
    color: rgb(255, 255, 255, 0.8);
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

hr.new {
    border: 1px solid rgb(255, 255, 255, 0.8);
    margin-top: 35px;
    margin-bottom: 20px;
}

.left_div {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    float: left;
    width: 75%;
    padding-bottom: 10px;
}

.right_div {
    text-align: right;
    font-size: 22px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    float: left;
    width: 25%;
    padding-bottom: 10px;
}

hr.main {
    border: 1px solid rgb(20, 20, 20);
    margin: 35px 0px;
}

.clear {
    clear: both;
}


.pic {
    float: left;
    width: auto;
    text-align: center;
    /* overflow: hidden; */
    margin-bottom: 10px;
}

.pic > a > img {
    width: calc(100% - 45px);
    max-width: 100%;
    height: auto;
    margin: auto;
}

#donation_describe {
    float: left;
    width: auto;
    text-align: left;
    overflow: hidden;
    margin-bottom: 10px;
}

.slider-wrapper {
    width: 1000px;
    height: 562px;
    overflow: hidden;
    margin: 0 auto;
    /* border: 2px solid #ccc; */
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;

}

.slider-track a {
    width: 1000px;                 /* must match wrapper width */
    height: 100%;
    flex-shrink: 0;
    display: flex;                /* allows centering inside */
    align-items: center;         
    justify-content: center;     
    background-color: #212931;   /* optional: ensures space is filled */
    /* border: #ccc solid 1px; */
}

.slider-track img {
    height: 100%;                 /* maintain fixed height */
    width: auto;                  /* preserve aspect ratio */
    object-fit: contain;
    display: block;
}