/* Reset */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*Body Styles*/
body {
    background-color: #000;
    display:flex;
    /*justify-content: center;*/
    align-items: center;
    /*height: 100vh*/
}

/*Image WRapper*/
.image-wrapper img{
    max-width:100%;
    height: auto;
    display: block;
    /*border: 5px solid #fff; *//*Optional; give it s aframe*/
   /* border-radius: 8px;*/
}