diff --git a/README.md b/README.md
index 6453761..822090f 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,4 @@
# 11th_HTML-CSS
-4월 5일 세션에 대한 미니 프로젝트 과제를 제출하는 레포입니다.
+
+4월 5일 세션에 한 미니 프로젝트를 4월 12일에 업로드했다.
+(졸려워...)
\ No newline at end of file
diff --git a/home.html b/home.html
new file mode 100644
index 0000000..bccb81a
--- /dev/null
+++ b/home.html
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+ My Profile
+
+
+
+ [내 프로필]
+ 이름 : 김유이
+ 포지션 : 백엔드
+ 학과 : 국어국문학과
+ 생년월일 : 2000.02.06
+
+
+
+
+
+ [MBTI]
+ INFJ
+ 선의의 옹호자
+ 다른 사람에게 의욕을 불어넣는 이상주의
+
+
+
+
+ [좋아하는 음식]
+ 곱창
+ 국수
+ 육회
+
+
+
+
+
+
+
+ [인생영화🎬]
+ 비긴 어게인
+ (5번 봤다)
+
+
+
+
+ [요즘 자주 듣는 노래]
+ 백예린-square🎼
+
+
+
+
+
+ [반려동물]
+ 없지만 고양이 좋아합니다
+ 고양이 키우고 싶다
+
+
+
+
+
+
+ [디버깅조]
+
+
+ 1. 최승호의 최애곡은 히사이시조의 merry go round인데 한우석은 그것을 피아노로 칠 수 있다.
+ 2. 이상연은 오늘 1교시를 지각했다.
+ 3. 오은택의 어금니가 깨진 걸 알고 치과 예약을 했다.
+
+
+
+
+
+
+ 서강 멋사 11기 아기사자
+ 🦁🦁🦁
+
+
+
+
+
+ Copyright © 2023 서강대학교 멋쟁이사자처럼 김유이. All right Reserved.
+
+
+
+ PC화면에서 접속해주세요!
+
+
+
+
\ No newline at end of file
diff --git a/styel.css b/styel.css
new file mode 100644
index 0000000..0f1432b
--- /dev/null
+++ b/styel.css
@@ -0,0 +1,168 @@
+@font-face {
+ font-family: 'KCC-Ganpan';
+ src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/KCC-Ganpan.woff2') format('woff2');
+ font-weight: normal;
+ font-style: normal;
+}
+
+* {
+ box-sizing: border-box;
+ margin: 0;
+ font-family: 'KCC-Ganpan';
+}
+
+body {
+ background-color: rgb(189, 188, 188);
+
+}
+
+header {
+ height: 40px;
+ background-color: grey;
+}
+
+main {
+ height: 640px;
+ width: 750px;
+ margin: 0 auto;
+ background-color: pink
+}
+
+footer {
+ height: 200px;
+ background-color: #F69F8B;
+ text-align: center;
+ padding: 25px;
+ color: grey;
+}
+
+#top {
+ height: 35px;
+ background-color: gainsboro;
+ margin-bottom: 25px;
+ ;
+ text-align: center;
+ line-height: 35px;
+ border-bottom-left-radius: 7px;
+ border-bottom-right-radius: 7px;
+}
+
+#container {
+ height: 410px;
+ padding: 10px;
+ background-color: darksalmon;
+ display: flex;
+ align-content: space-around;
+ flex-wrap: wrap;
+ justify-content: space-around;
+}
+
+aside {
+ height: 110px;
+ background-color: beige;
+ margin: 30px 20px 30px 20px;
+
+ display: flex;
+ justify-content: space-between;
+ border-radius: 5px;
+ /* margin: 0 15 60 15; */
+}
+
+section {
+ height: 45%;
+ width: 30%;
+ background-color: white;
+ border-radius: 7px;
+}
+
+section p {
+ padding: 27px;
+ text-align: center;
+ position: relative;
+}
+
+#team {
+ width: 470px;
+ height: 100%;
+ background-color: gainsboro;
+ /* float:left; */
+ border-radius: 5px;
+ padding: 10px;
+ text-align: center;
+}
+
+#team p {
+ font-size: small;
+}
+
+.debug {
+ text-align: left;
+}
+
+#hi {
+ width: 230px;
+ height: 100%;
+ background-color: bisque;
+ /* float: right; */
+ border-radius: 5px;
+ padding: 30px;
+ text-align: center;
+}
+
+#mbti {
+ background-image: url("./images/infj.png");
+ background-size: cover;
+ position: relative;
+ color: white;
+}
+
+#mbti:hover {
+ transform: scale(1.2);
+ transition: all 0.2s linear;
+}
+
+#cat {
+ background-image: url("./images/cat.jpg");
+ background-size: cover;
+ color: white;
+ position: relative;
+}
+
+#cat:hover {
+ transform: scale(1.2);
+ transition: all 0.2s linear;
+}
+
+#movie {
+ background-image: url("./images/movie.jpeg");
+ background-size: cover;
+ position: relative;
+ color: white;
+}
+
+#movie:hover {
+ transform: scale(1.2);
+ transition: all 0.2s linear;
+}
+
+.bg {
+ background-color: rgba(0, 0, 0, 0.5);
+ width: 100%;
+ height: 100%;
+ border-radius: 5px;
+ position: absolute;
+}
+
+@media(max-width: 800px) {
+ #main-container {
+ display: none;
+ }
+
+ #alert {
+ text-align: center;
+ margin-top: 30px;
+ font-size: large;
+ color: red;
+ display: block;
+ }
+}
\ No newline at end of file