.projects{
    display: flex;
    flex-direction: column;
    background-color: #333; /* Dark background color */
    color: white; /* White text color */
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    margin-top: 7vh;
}

.title{
    color: #f1f1f1; /* Light text color for better readability */
    align-self: center; 
}

.project-box{
    margin: 2% auto;
    width: 90%;
    padding: 2%; 
    background-color: #1c1c1c; 
    color: #f1f1f1; 
    border-radius: 20px; 
    box-shadow: 0 0px 25px rgba(255, 255, 255, 0.2); 
}

.project-box-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}
.project-box-header a{
    font-size: 2rem;
    margin-right: 1rem;
    text-decoration: none;
}

.description-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 60%;
    background-color: #2a2a2a;
    color: #f1f1f1;
    font-size: 1.07rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

.project-description {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 1rem auto;
    align-items: center;
}

.project-summary-image {
    width: 70%;
    display: flex;
    justify-content: center;
}

.project-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.project-skills,
.skills-application {
    background-color: #333;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.1);
}

.skills-application ul {
    padding-left: 0.5rem;
    
}

.skills-application li {
    margin: 0.5rem 0;
    text-align: left;
}

  
.project-line{
    width: 60%;
    align-self: center;
}

@media (max-width: 768px) {
    .projects{
        display: flex;
        flex-direction: column;
        background-color: #333; /* Dark background color */
        color: white; /* White text color */
        min-height: 100vh;
        width: 100%;
        padding: 20px;
        margin-top: 5vh;
    }
    .project-box{
        margin: 2% auto;
        width: 95%;
        padding: 5%; /* Increased padding for more space inside the container */
        background-color: #1c1c1c; /* Darker background for the containers */
        color: #f1f1f1; /* Light text color for better readability */
        border-radius: 20px; /* Rounded corners */
        box-shadow: 0 0px 25px rgba(255, 255, 255, 0.2); /* Light shadow for dark background */
    }
    .project-description {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin: 1rem auto;
        align-items: center;
    }
    .description-text {
        display: flex;
        flex-direction: column;
        width: 100%;
    
    }
    
    .project-summary-image {
        width: 100%
    }
}