/* BASE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY STYLE */
body {
    background: black;
    color: white;
    font-family: Arial, sans-serif;
}

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

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}