diff --git a/react-whenMeet/src/components/CalendarWeek2.jsx b/react-whenMeet/src/components/CalendarWeek2.jsx
index 43c6b66da5f3f4820a70e28e7d52a90a13846235..d0b70290e927807bdc53261f580dfec3b45a634f 100644
--- a/react-whenMeet/src/components/CalendarWeek2.jsx
+++ b/react-whenMeet/src/components/CalendarWeek2.jsx
@@ -1,5 +1,5 @@
 import React, { useState } from "react"
-import './Calendar.css'
+import '../styles/Calendar.css'
 import MakeDay2 from "./MakeDay2";
 import TableCell from "./TableCell";
 
diff --git a/react-whenMeet/src/styles/Calendar.css b/react-whenMeet/src/styles/Calendar.css
new file mode 100644
index 0000000000000000000000000000000000000000..7eb60d109255c679e38d4967295adb35c2147cd0
--- /dev/null
+++ b/react-whenMeet/src/styles/Calendar.css
@@ -0,0 +1,30 @@
+.calendar{
+    .day{
+        display: flex;
+    }
+    .cells{
+        display: flex;
+    }
+    .cella{
+        width: 14%;
+    }
+    .cellb{
+        width: 14%;
+    }
+}
+table {
+    /* width: 100%; */
+    border: 1px solid #444444;
+
+    .ttt{
+        /* width: 100%;  */
+        height: 10px;
+        border: 1px solid #444444;
+    }
+    
+    .table_head{
+        margin-left: auto;
+        margin-right: auto;
+    }
+    
+}
\ No newline at end of file