#home-section #main-bio {
    font-size: 20px;
    padding: 30px;
    text-align: center;
}

#bio-bit {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

#bio-photo {
    max-width: 40%;
    padding: 15px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.5);
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 30px;
}

.links img {
    max-width: 50px; 
    max-height: 50px;
    opacity: 0.8;
    margin: auto;
    transition: transform 0.2s ease-in-out;
}

.links img:hover {
    transform: scale(1.1);
}

#home-image-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
    justify-content: space-around; 
    gap: 30px;
    margin: auto;
}

#home-image-container img {
    max-width: 40%;
    height: auto;
    max-height: 300px;
    border-radius: 15px;
    object-fit: cover; 
    object-position: center; 
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.5);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
  
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 500px) {

    #home-section #main-bio {
        font-size: 1rem;
        padding: 20px;
        text-align: center;
        color: white;
        text-shadow: 1px 1px 2px black;
    }
    
    #bio-bit {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 30px;
        margin-bottom: 20px;
        background-image: url('images/home_images/full_band1.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: rgba(0, 0, 0, 0.3); /* Add a semi-transparent overlay */
        background-blend-mode: overlay; /* Blend the image with the overlay */
    }
    
    #bio-photo {
        display: none;
    }
    
    .links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-bottom: 30px;
    }
    
    .links img {
        max-width: 50px; 
        max-height: 50px;
        opacity: 1;
        margin: auto;
        transition: transform 0.2s ease-in-out;
    }
}