diff --git a/src/components/Card.js b/src/components/Card.js
new file mode 100644
index 0000000..548fe13
--- /dev/null
+++ b/src/components/Card.js
@@ -0,0 +1,19 @@
+import React from 'react';
+import './css/Card.css';
+
+const Card = (props) => {
+ console.log(props);
+ return (
+
+
+
{props.title}
+
+ {props.children}
+
+
+

+
+ );
+};
+
+export default Card;
\ No newline at end of file
diff --git a/src/components/css/Card.css b/src/components/css/Card.css
new file mode 100644
index 0000000..9d311fc
--- /dev/null
+++ b/src/components/css/Card.css
@@ -0,0 +1,34 @@
+.card {
+ display: flex;
+ flex-direction: row;
+ padding: 50px;
+ width: 75vw;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.card .title {
+ font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
+ font-size: 48px;
+ color: #3D3D3D;
+}
+
+.card .content {
+ font-size:xx-large;
+ margin-right: 10px;
+}
+
+.card img {
+ display: none;
+}
+
+.card img.show {
+ display: block;
+ border-style: solid;
+ border-width: 2px;
+ border-color: #A5B2A4;
+ border-radius: 5px;
+ height: 10rem;
+ width: 10rem;
+ margin: auto;
+}
\ No newline at end of file