diff --git a/main.html b/main.html
new file mode 100644
index 0000000..e45d91c
--- /dev/null
+++ b/main.html
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Computer
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..3e03e0a
--- /dev/null
+++ b/style.css
@@ -0,0 +1,44 @@
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Poppins',sans-serif;
+}
+
+.container {
+ display: flex;
+ flex-direction: column;
+ width: 480px;
+ margin: auto;
+ padding-top: 120px;
+
+
+}
+
+.screen {
+ display: flex;
+}
+
+.buttons , #computer {
+ margin: 2px;
+ flex-basis: 50%;
+ height: 210px;
+ background-color: lightblue;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+button{
+ font-size: 18px;
+ padding: 8px;
+}
+
+button:focus{
+ font-weight: bold;
+}
+
+.me{float: left;}
+
+.comp{float: right;}
\ No newline at end of file