:root {
    /* Font Color */
    --light-theme: #f8f9fa;
    
    /* Circle Width */
    --circle-diameter: 300px;

    /* Font Family */
    font-family: 'SEBANG_Gothic_Regular';
    font-family: 'SEBANG_Gothic_Regular';

    /* Font Weight */
    --light: 300;
    --regular: 400;
    --bold: 700;
    --black: 900;

}


/* ------------- */
/* Basic Setting */
/* ------------- */
@font-face {
    font-family: 'SEBANG_Gothic_Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
html,
body {
    box-sizing: border-box;
    font-family: 'SEBANG_Gothic_Regular';
    font-weight: 300;
    font-style: normal;
    font-size: 1em;
    line-height: 1.5;
    scroll-behavior: smooth;
    padding-top:100px;
}

*, *::before, *::after {
    box-sizing: inherit;
}

main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    background-color: var(--light-theme);
}

::selection {
    color: #fff;
    background-color: var(--light-theme);
}


/* ------------- */
/* Content Style */
/* ------------- */

.google-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    overflow: hidden;
    border-radius: var(--circle-diameter);
    transition: 5000ms;
    cursor: grab;
}

/*
.google-map::after {
    content: "";
    position: absolute;
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    border-radius: var(--circle-diameter);
    background: radial-gradient(circle, #ffffff00 0%, #f8f9fa 50%);
    pointer-events: none;
}
*/

.google-map .map-frame {
    width: 100%;
    height: 100%;
    background-color: var(--light-theme);
}

.google-map iframe {
    position: relative;
    width: 100vw;
    height: 100vh;
    pointer-events: visibleStroke;
}


/* ------------------ */
/* Interactive Effect */
/* ------------------ */

.google-map:hover {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}