/*
 * Simple CSS reset to remove default margins/padding and set
 * consistent box-sizing across elements.  Loading this file
 * ensures a more predictable starting point when building the
 * layout to resemble myflixbd.to.  You can adjust or extend
 * these rules as needed.
 */

/* Reset margin and padding on all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Neutralise images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}