main{
    padding: 100px 50px;
}
main h1{
    font-size: 3em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

main .project-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
main .project{
    width: 46%;
    margin-bottom: 50px;
    height: auto;
}
main .project .project-image{
    height: 25vw;
    width: 100%;
    background-color: #000;
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.5);
}

#bloc-jams .project-image{
    background-image: url(../assets/images/bloc-jams-1.png);
}
#bloc-chat .project-image{
    background-image: url(../assets/images/bloc-chat.png);
}
#bloccit .project-image{
  background-image: url(../assets/images/bloccit-1.png);
}

#pixel-run .project-image{
  background-image: url(../assets/images/pixel_run.png)
}
#retro-wheels .project-image{
  background-image: url(../assets/images/retro_wheels_logo.svg);
  background-size: contain;
  background-position: center;
  background-color: #fff;
}
#full-of-crepe .project-image{
  background-image: url(../assets/images/full_of_crepe.png);
  background-position: center;
}
#css-zen-garden .project-image{
  background-image: url(../assets/images/css_zen_garden.png);
  background-position: center;
}

main .project .project-name{
    font-weight: 900;
    font-size: 2em;
    text-transform: uppercase;
    margin: 10px 0;
}

main .project .project-brief{
    width: 100%;
}

@media screen and (max-width: 500px){
    main{
        padding-left: 10px;
        padding-right: 10px;
    }
    main h1{
        font-size: 1.5em;
    }
    main .project{
        min-width: 200px;
    }
}
