<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*---------------------------------------------------*/
/*                 google webfont                    */
/*---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700;800&amp;display=swap');
/* pretendar */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/* playfair */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;display=swap');

/*---------------------------------------------------*/
/*                  Reset Common                     */
/*---------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    font-family: var(--pre);
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

*, :after, :before {
    box-sizing: border-box;
    flex-shrink: 0;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
}

body, html {
    height: 100%;
}

button, input, select, textarea {
    font: inherit
}

h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word
}

:root {
    overflow-wrap: break-word;
    word-break: break-word;
    --pre: 'Pretendard';
}

.hide, caption, legend, .hidden, .sr-only {
    position: absolute;
    left: -300px;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    background: none;
    line-height: 0;
    overflow: hidden
}

/* 드래그 시 색상*/
::-moz-selection {
    background: rgba(7, 78, 57, 0.85);
    color: #fff;
}

::selection {
    background: #2b6f06;
    color: #fff;
}

:root {
    --app-height: 100%;
}

/* background */
#wrap {
    width: 100%;
    height: 100%;
}

#IntroArea {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: 100% 100%;
    transition: all 0.5s;
}
#IntroArea::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(16, 33, 58, 0.63) 0%, rgba(20, 32, 43, 0.45) 39.53%, rgba(0, 0, 0, 0) 100%);
}

/* contents */
.intro-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: 0 auto;
    color: #fff;
    z-index: 1;
}

.intro-text h1{
    font-size: 32px;
    letter-spacing: -0.01em;
    margin: 20px auto 5px;
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
    font-weight: 400;
}
.intro-text h2 {
    font-family: "Vladimir Script";
    font-size: 40px;
    text-shadow: 0 4px 4px rgba(0,0,0,0.25);
    margin-top:20px;
}

.intro-btn{
    margin-top: 65px;
}
.intro-btn a {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 600px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    border-radius: 24px 0 24px 0;
    font-size: 34px;
    font-family: "Playfair Display", serif;
    align-items: center;
    font-weight: 800;
    margin: 23px auto;
    transition: all 0.5s;
}
.intro-btn a span {
    font-size: 24px;
    font-family: var(--pre);
    font-weight: 400;
}

/* hover button */
.intro-btn .golf:hover{
    background: rgba(7, 78, 57, 0.85);
    border: 1px solid rgba(0, 88, 62, 1);
    transition: all 0.3s;
}

.intro-btn .range:hover{
    background: rgba(130, 14, 40, 0.85);
    border: 1px solid rgba(138, 0, 31, 1);
    transition: all 0.3s;
}


</pre></body></html>