body{
    color: white;
    background-color: rgb(27, 27, 27);
    font-family: Helvetica;
}
.container{
    width: 100%;
    height: 100%;
    padding: 2%;
    display: flex;
    flex-wrap: wrap;
}
.header{
    text-align: center;
    width: 100%;
}
.content{
    width: 100%;
}
.creations{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;

}
.creation{
    width: auto;
    text-align: center;
    word-wrap: normal;
    padding: 15px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.5);
    margin: 1%;
}
.creation a{
    color: white;
}
.content h2{
    text-align: center;
}
.footer{
    margin-top: auto;
    text-align: center;
    width: 100%;
}