diff --git a/README.md b/README.md
index 6453761..51e7d7a 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,2 @@
# 11th_HTML-CSS
-4월 5일 세션에 대한 미니 프로젝트 과제를 제출하는 레포입니다.
+챗 gpt 사랑합니다.
diff --git a/home.html b/home.html
new file mode 100644
index 0000000..a949b0f
--- /dev/null
+++ b/home.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+ [내 프로필]
+ 이름 : 장세환
+ 포지션 : 프론트엔드
+ 학과 : 화공생명공학과
+ 생년월일 : 1996.09.10
+
+
+
+
+ MBTI
+ ESTJ
+ 현실적, 구체적
+
+
+
+
+ [좋아하는 음식]
+ 김치찌개
+ 치킨
+ 피자
+ 족발
+
+
+
+
+
+ [인생영화]
+ 굿 윌 헌팅
+ 쇼생크 탈출
+
+
+
+
+ [요즘 자주 듣는 노래]
+ 찰리푸스 - Hilarious
+
+
+
+
+
+
+
+
+
+ pc에서 확인해주세요!
+
+
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..dab7938
--- /dev/null
+++ b/style.css
@@ -0,0 +1,155 @@
+@font-face {
+ font-family: 'KimjungchulGothic-Bold';
+ src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulGothic-Bold.woff2') format('woff2');
+ font-weight: 700;
+ font-style: normal;
+}
+*{
+ box-sizing: border-box;
+ font-family : 'KimjungchulGothic-Bold';
+ margin: 0;
+}
+body{
+ background-color: #f8f8f8;
+}
+
+header{
+ height: 40px;
+ background-color: #333;
+}
+
+main{
+ height: 600px;
+ width: 750px;
+ margin: 0 auto;
+ background-color: rgb(231, 228, 228);
+}
+footer{
+ height: 200px;
+ background-color: white;
+}
+
+#top{
+ height: 35px;
+ background-color: #f0cdea;
+ margin-bottom: 25px;
+ border-radius: 0 0 10px 10px;
+ color:white;
+ font-size: 18px;
+ text-align: center;
+ line-height: 35px;
+}
+#container{
+ height: 410px;
+ padding: 10px;
+ display:flex;
+ flex-wrap: wrap;
+ justify-content: space-around;
+ align-content: space-around;
+}
+aside{
+ height: 110px;
+ background-color: white;
+ margin-bottom: 60px;
+ margin: 0 15px 60px 15px;
+ display: flex;
+ justify-content: space-between;
+}
+section{
+ height: 45%;
+ width: 30%;
+ background-color: white;
+ border-radius: 7px;
+}
+#profile{
+ padding : 30px;
+ text-align: center;
+}
+#food{
+ padding: 30px;
+ text-align: center;
+}
+#mbti{
+ padding: 30px;
+ text-align: center;
+}
+
+.bg{
+ background-color: rgba(0, 0, 0, 0.5);
+ width: 100%;
+ height: 100%;
+ border-radius: 5px;
+ position:absolute;
+}
+section p {
+ padding: 5px;
+ position: relative;
+}
+#movie:hover{
+ transform: scale(1.4);
+ transition: all 0.2s linear;
+}
+#movie{
+ background-image: url("./images/movie.jpeg");
+ background-size: cover;
+ text-align: center;
+ position:relative;
+ color:white;
+}
+#music{
+ padding: 30px;
+ text-align: center;
+}
+#dog:hover{
+ transform: scale(1.4);
+ transition: all 0.2s linear;
+}
+#dog{
+ background-image: url("./images/dog.jpeg");
+ background-size: contain;
+ background-repeat: no-repeat;
+ background-position: center;
+ padding: 30px;
+ text-align: center;
+}
+#team{
+ width: 460px;
+ height: 100%;
+ background-color: #31999c;
+ color: white;
+ border-radius: 5px;
+ font-size: 15px;
+ float:left;
+ text-align: center;
+}
+#hi{
+ width: 230px;
+ height: 100%;
+ padding : 30px;
+ background-color: pink;
+ color: black;
+ border-radius: 5px;
+ font-size: 15px;
+ float:right;
+ text-align: center;
+}
+footer{
+ height: 200px;
+ background-color: white;
+ text-align: center;
+ color: rgb(170,170,170);
+ padding : 10px;
+}
+#alert{
+ display: none;
+ text-align: center;
+ padding: 300px;
+}
+@media(max-width:800px){
+ #main-container{
+ display: none;
+ }
+ #alert{
+ display: block;
+ }
+}
\ No newline at end of file