/* ==========================================================
   HANNANET MOVIE MOBILE
   RESET CSS
   Version : 1.0
========================================================== */

/* ==========================================
   RESET
========================================== */

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   HTML
========================================== */

html{
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ==========================================
   BODY
========================================== */

body{
    background: #0b0b0b;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==========================================
   IMAGE
========================================== */

img{
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

/* ==========================================
   LINK
========================================== */

a{
    color: inherit;
    text-decoration: none;
}

/* ==========================================
   BUTTON
========================================== */

button{
    font: inherit;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

/* ==========================================
   INPUT
========================================== */

input,
textarea,
select{
    font: inherit;
    outline: none;
    border: none;
}

/* ==========================================
   LIST
========================================== */

ul,
ol{
    list-style: none;
}