diff --git a/index.html b/index.html index 4648b82..0957e7f 100644 --- a/index.html +++ b/index.html @@ -23,9 +23,57 @@ developers to collectively learn and grow.

- Whether you're freshly starting out, or you are just looking to connect with likeminded people. We help you turn your project ideas into reality. + Whether you're freshly starting out, or you are just looking + to connect with likeminded people. We help you turn your + project ideas into reality.

+
+
+

What you get

+
+
+

Chat

+

+ We're hosting our own Matrix server to keep in touch + and share ideas. +

+ + Join here! + +
+
+

+ Code Hosting +

+

+ We use Gitea to collaboratively work on our code. +

+ + Set up your account! + +
+
+

Boards

+

+ We provide free Kanban boards to plan our projects. +

+ + Get agile! + +
+
+
+
diff --git a/styles/index.css b/styles/index.css index 8722770..62ffa3e 100644 --- a/styles/index.css +++ b/styles/index.css @@ -4,7 +4,9 @@ /* Components */ @import url("./hero.css"); @import url("./introduction.css"); +@import url("./services.css"); body { margin: 0; + font-family: "Work Sans", sans-serif; } diff --git a/styles/introduction.css b/styles/introduction.css index 02d0d12..fc5d1c9 100644 --- a/styles/introduction.css +++ b/styles/introduction.css @@ -1,17 +1,15 @@ .introduction { align-items: center; display: flex; - font-family: "Work Sans", sans-serif; - height: 30vh; justify-content: center; text-align: center; + margin-bottom: 10rem; } .introduction__container__heading { font-size: 2.5rem; - } .introduction__container__subheading { font-size: 1.5rem; -} \ No newline at end of file +} diff --git a/styles/services.css b/styles/services.css new file mode 100644 index 0000000..60fc15c --- /dev/null +++ b/styles/services.css @@ -0,0 +1,45 @@ +.services { + align-items: center; + display: flex; + justify-content: center; + text-align: center; + margin-bottom: 10rem; +} + +.services__heading { + font-size: 5rem; +} + +.services__offers { + display: flex; + width: 100vw; + justify-content: space-evenly; + flex-wrap: wrap; +} + +.services__offers__card { + margin-top: 1.5rem; + width: 15rem; +} +.services__offers__card__heading { + font-size: 2rem; +} + +.services__offers__card__description { + margin-bottom: 1rem; +} + +.services__offers_card__button { + background: black; + border: 0px; + color: white; + text-decoration: none; + padding: 0.6rem 2rem; + transition: 0.2s; +} + +.services__offers_card__button:hover { + border: 1px solid black; + color: black; + background: white; +}