@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic','Nanum Gothic', 'sans-serif';
    letter-spacing: -0.04em;
}

html, body {
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    pointer-events : none;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

:root {
    --main-color: #3d51ff;
}

::selection {
    color: #fff;
    background-color: var(--main-color);
}


/*==================================================*/
.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    width: 550px;
    box-shadow: 0 0 40px rgba(0, 0, 0, .15);
    overflow: hidden;
}

.fixed-bg {
    position: relative;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/bg.jpg) repeat;
    z-index: -1;
}



/*==================================================*/
@media (max-width: 600px) {
    .main {
        width: 100%;
    }
}