:root {
    /* 색상 변수 */
    --footer-background: #D7CEC4;
    --textarea-background: #ffffff;
    --title-primary: #FE505F;
    --title-secondary: #11B205;
    --text-primary: #444444;
    --text-secondary: #ffffff;
    --text-muted: gray;
    --border-color: #808080;
    --vector-color: #FD9799;

    /* 그림자 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* 둥글기 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

/* 기본 리셋 */
* {
    box-sizing: border-box;
}

body {
    font-family: "Playwrite MX", cursive;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 15px;
    background-image: url('../img/background.png');
    background-repeat: no-repeat; /* 이미지가 반복되지 않도록 설정 */
    background-size: cover; /* 비율 유지하며 화면 꽉 채우기 */
    background-attachment: fixed; /* 스크롤해도 배경 이미지 고정 */
    background-position: center center; /* 배경 이미지 가운데 정렬 */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

header {
    padding: 2rem;
    border-bottom: 0.5px solid var(--border-color);
    margin-bottom: 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10rem 1rem 1rem;
}

footer {
    padding: 0 1rem 2rem;
    background-color: var(--footer-background);
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-top: 0.5px solid var(--border-color);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer p {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 0.8rem;
    font-variation-settings: "wdth" 100;
}