@font-face {
    font-family: 'ColfaxAIRegular'; /* 字体的名称，可以自定义 */
    src: url('https://cdn.openai.com/API/fonts/ColfaxAIRegular.woff2') format('woff2'); /* 字体文件的CDN链接和格式 */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ColfaxAIBold'; /* 字体的名称，可以自定义 */
    src: url('https://cdn.openai.com/API/fonts/ColfaxAIBold.woff2') format('woff2'); /* 字体文件的CDN链接和格式 */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'ColfaxAIRegular', sans-serif; /* 应用字体到body元素，使用备用字体 "sans-serif" 作为后备 */
    background-color: black;
    color: white; /* 设置文本颜色为白色 */
}

h1 {
    font-family: 'ColfaxAIRegular', sans-serif; /* 应用字体到h1元素，使用备用字体 "sans-serif" 作为后备 */
    color: white;
}

#textArea{
    font-family: 'ColfaxAIRegular', sans-serif;
    font-size: 15px;
    color: white;
    background-color: black;
}

#logo{
    max-width: 100%;
}

/* 其他样式规则和选择器可以继续定义在这里 */
