.projects {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: clamp(30px, 6vw, 60px) clamp(12px, 4vw, 40px);
}

.projects h1 {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
    color: #FFFFFF;
    text-shadow: 0px 5px 5px rgb(0 0 0);
    margin-bottom: 20px;
    font-family: Lato, sans-serif;
    text-align: center;
}

.project-list {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}

.project-item h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #FFFFFF;
    text-shadow: 0px 5px 5px rgb(0 0 0);
    margin-bottom: 10px;
    font-family: Lato, sans-serif;
    padding: 0px 0px 15px 0px;
}

.project-item .video-placeholder {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    border: 2px solid #333333;
}

/* The inner fill sits on top of the gradient padding below, so the frame
   still reads as a coloured border like the real player did */
.project-item .video-placeholder span {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background-color: #111111;
    font-family: Lato, sans-serif;
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    color: #CCCCCC;
}

#metaverse .video-placeholder {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;


    padding: 2px;
    border-radius: 10px;

    background: linear-gradient(
        to right,
        #FF9FF9,
        #39AFFF
    );
}


#sightsmp .video-placeholder {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;


    padding: 2px;
    border-radius: 10px;

    background: linear-gradient(
        to right,
        #934AE9,
        #BF9114
    );
}

#beatdown .video-placeholder {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;


    padding: 2px;
    border-radius: 10px;

    background: linear-gradient(
        to right,
        #FF5808,
        #FF0808
    );
}



.project-item {
    color: #fff;
    padding: 3px 15px 15px 15px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    width: 100%;
    max-width: 800px;
}




.tags {
    padding: 10px 5px 100px 5px;
    margin-top: 5px;

    
}


.project-description {
    font-family: Lato, sans-serif;
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    padding: 0px clamp(0px, 5vw, 40px) 5px clamp(0px, 5vw, 40px);
}


.project-list hr {
    width: -0px;
    height: 2px;

    border: none;
    background-color: #333333;
    border-radius: 999px;
    padding: 0px 0px 0px 0px;


}

