@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: "Pretendard GOV" !important;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    scroll-behavior: smooth;
    min-width: 320px;
    position: relative;
    -webkit-tap-highlight-color: transparent !important;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    flex-grow: 1;
}

header,
footer {
    flex-shrink: 0;
}

ul,
ol,
dl {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: "Pretendard GOV", "Roboto", "Helvetica Neue", Arial, sans-serif !important;
}

button:disabled {
    border: none;
    background-color: #F1F1F1;
    color: #666;
}

:focus-visible {
    outline: none;
    box-shadow: 0 0 0 1px #fff,
        0 0 0 3px #FFC107;
}