:root {
    --primary: #D4E8FF;
    /*주요색상*/
    --primary-dark: #4167A4;
    /*기본색보다 어두움*/
    --primary-more-dark: #243643;
    --primary-light: #F2F7FD;
    /*기본색보다 밝음*/

    --border-light: #e0e0e0;
    --border-dark: #a1a1a1;

    --text-primary: #000000;
    --text-secondary: #4167A4;
    --text-inverse: #ffffff;

    --neutral-light: #F7F7F7;
    --neutral-default: #EEEEEE;
    --neutral-dark: #CDCDCD;

    --background-default: #f8f9fa;
    --background-paper: #ffffff;
    --background-accent: #e9ecef;
}

* {
    font-family: 'Pretendard Variable';
    box-sizing: border-box;
    color: var(--text-primary);
}

@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 450 920;
    font-style: normal;
    src: url('/font/PretendardVariable.woff2') format('woff2-variations');
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    /* 너비를 100%로 설정 */
    background-image: url('/img/background1.jpeg');
    background-size: cover;
}

button:hover {
    opacity: 0.7;
    cursor: pointer;
}

button {
    background-color: var(--primary-dark);
    color: var(--text-inverse);
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: 0px;
}

button.inverse {
    background-color: var(--primary);
    color: var(--primary-dark);
    border: 0px;
}

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

.container {
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    background: white;
    overflow: hidden;
    max-height: 100vh;
}