.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (height/width) */
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-item {
    flex: 0 0 calc(33.33% - 30px);
    /* Adjust the width as needed */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.project-content {
    flex: 1;
}

.project-description {
    flex: 1;
    margin-bottom: 10px;
    /* Add some space between description and button */
    overflow: hidden;
}

.actions {
    display: flex;
    justify-content: center;
    /* Center the button vertically */
    align-items: flex-end;
    /* Align the button at the bottom */
}