@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root {
  --border: #e5e5e5;
  --bg-gray: #f3f3f3;
  --gray: #b5b5b5;
  --black: #000000;
  --white: #ffffff;
  --gradient: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 1) 90%
    );
  --r: 400;
  --b: 600;
  --eb: 800;
  --shadow: rgba(149, 157, 165, 0.4) 0px 0px 12px;
  --break: 1200px;

}



html, body {
    height: 100dvh;
    width: 100vw;
    top: 0;
    margin: 0;
    padding: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background: #ffffff00;
}

#root {
    width: 100%;
    min-height: 100%;
    padding-bottom: 100px;
    background-color: white;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 24px;
    box-sizing: border-box;
    margin: auto;

    .container-title {
        font-weight: var(--b);
        font-size: 32px;
        padding-bottom: 16px;
    }
}

* {
    font-family: 'Pretendard Variable';
    font-weight: 400;
}

.r {
    font-weight: 400;
}

.b {
    font-weight: 600;
}

.eb {
    font-weight: 800;
}

.gray {
    color: var(--gray);
}

.light-gray {
    color: var(--bg-gray);
}

.btn-mixed {
    padding: 16px 24px;
    border-radius: 32px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;

    img {
        width: 16px;
        height: 16px;
    }

    .btn-mixed-text {
        font-size: 16px;
    }
}

.btn-black {
    background-color: black;
    color: white;
    img {
        filter: invert(1);
    }
}

.btn-white {
    color: black;
    border: 2px solid black;
}

.btn {
    width: fit-content;

    transition: 0.2s;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
}

.btn:hover {
    box-shadow: var(--shadow);
}

    .caption {
        width: 100%;
        text-align: center;
        color: var(--gray);
    }