*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
#container{
    display:flex;
    align-items: center;
    flex-flow:column nowrap;
    background-color: #ccc;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px;
}
.smallCont{
    display:flex;
    flex-flow:column nowrap;
    align-items: center;
    border:3px solid black;
    border-radius:30px;
    min-height: 200px;
    width: 50%;
    margin-top:50px;
    padding:20px;
    padding-bottom: 30px;
}
.defaultFiles, .images{
    margin-top:20px;
    display: flex;
    flex-flow:column nowrap;
    font-size: 16px;
    width: 95%;
}
.defaultFiles{
    justify-content: flex-start;
}
.images{
    align-items: center;
}
.defaultFiles img[src="img/fileIcon.png"]{
    height: 16px;
}
.singleFile{
    display: inline-block;
}
.singleImage figure img{
    max-height: 100px;
}
.singleImage{
    margin-bottom: 30px;
}