/* Global */
body {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #222;
    overflow-x: hidden;
    position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    body {
        display: block;
    }
}

button, a, li {
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    cursor: pointer;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    zoom: 1;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Nanum Gothic', sans-serif;
}

:focus {
    outline: none;
}

/* Hiding the X button in IE */
::-ms-clear, ::-ms-reveal {
    display: none;
}