/* static/styles/project.css */

main {
    padding: 2rem;
    background-image: url("/static/pictures/assets/wallpaper/pixel_snow.c536a01a3858.gif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.5);
}

#project-page h2 {
    text-align: center;
    font-size: 2rem;
    color: #f9f9f9;
    margin-bottom: 2rem;
}

.project {
    width: 60%;
    margin: 1.5rem auto;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.project h3 {
    font-size: 1.8rem;
    color: #f9f9f9;
}

.project-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-images img {
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.project-languages {
    margin-top: 1rem;
}

.project-languages h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.project-languages ul {
    display: flex;
    gap: 0.5rem;
}

.project-languages li {
    list-style: none;
}

.project-languages li img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Alignment Classes */
.align-left {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.align-center {
    margin: 0 auto;
    text-align: center;
}

.align-right {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}
