/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

body p:hover {
    color: #59565a;
    cursor: default;
    transition: all 0.5s;
}

body h2:hover {
    color: #8a2be2;
    cursor: default;
    transition: all 0.5s;
}