/* Global */
html {
    min-height: 100%;
    position: relative;
}

body {
    display: flex;

    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    width: 100%;

    /* height: 100vh; */
    margin: 0;
    padding: 0;
    color: #222222;
    font-family: 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
    padding-bottom: 100px;
}

button,
a,
li {
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.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;
}

footer {
    text-align: center;
    justify-content: flex-end;
    flex-direction: column;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
}