diff --git a/gymsite.html b/gymsite.html
new file mode 100644
index 0000000..eb0e7de
--- /dev/null
+++ b/gymsite.html
@@ -0,0 +1,48 @@
+
+
+
+
+ Gymtastic Home
+
+
+
+
+ Gymtastic
+ - Home
+ - About Us
+ - Contact Us
+
+
+
+ Fitness for life!
+
+ Every gym is designed with you in mind, from the way they're laid out,
+ to the range of equipment available.
+
+ Get your membership today and save a whopping 50%!
+ GET MEMBERSHIP
+ Follow us on
+
+ Instagram
+ Facebook
+ Youtube
+
+
+
+
+
+
Popular features
+
Gyms Near Me
+
+ - Gyms in London
+ - Gyms in Cardiff
+ - Gyms in Glasgow
+
+
Fitness Classes
+
Personal Trainers
+
Gym Membership Deals & Offers
+
+
+
+
+
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..3ab42fb
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,59 @@
+* {
+ font-family: Arial, Helvetica, sans-serif;
+}
+div {
+ background-color: cornflowerblue;
+ color: white;
+}
+h1,
+span {
+ color: cornflowerblue;
+}
+h1 {
+ font-weight: 650;
+}
+main {
+ margin: 70px;
+}
+li {
+ list-style-type: none;
+}
+#navbar li {
+ display: inline-block;
+ margin: 15px;
+ font-size: 30px;
+}
+main p,
+main li {
+ font-size: 20px;
+}
+#membutton {
+ color: orange;
+ height: 25px;
+ width: 200px;
+ padding: 20px;
+ border: 2px solid orange;
+ border-radius: 25px;
+}
+#social-list li {
+ display: inline-block;
+ margin: 10px;
+ font-weight: 700;
+ font-size: x-large;
+ text-align: center;
+ line-height: 20px;
+ height: 20px;
+ width: 175px;
+ padding: 25px;
+}
+.socials {
+ border-radius: 25px;
+ color: white;
+}
+#bottombar h4,
+#bottombar li {
+ margin-left: 50px;
+}
+.boldI {
+ font-weight: bold;
+}