diff --git a/assets/images/beautiful.jpg b/assets/images/beautiful.jpg new file mode 100644 index 0000000..447fbca Binary files /dev/null and b/assets/images/beautiful.jpg differ diff --git a/assets/images/construction.jpg b/assets/images/construction.jpg new file mode 100644 index 0000000..7c1c072 Binary files /dev/null and b/assets/images/construction.jpg differ diff --git a/assets/images/logo.png b/assets/images/logo.png new file mode 100644 index 0000000..435b586 Binary files /dev/null and b/assets/images/logo.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..0add421 --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + + + + Agency + + + + + + + +
+ +

We are a Creative
Design Agency

+
hand and flower in water +

Beauty

+

We strive to create the most beautiful websites for all your needs. Working closely with you + to + design and + develop an amazing website for your business.

+
+ +
metal structure +

Construction

+

Built by our team of professional developers, we ensure the most rigourous and modern websites. Built from + scratch using HTML and CSS. Only the best for you.

+
+ +
+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..92f6015 --- /dev/null +++ b/style.css @@ -0,0 +1,88 @@ +body { + font-family: "Poppins", sans-serif; + margin: 50px 50px 0 50px; + background-color: #faf9f6; + display: flex; + flex-direction: column; + min-height: 95vh; + background-color:antiquewhite +} +.main { + flex: 1; +} + +h1 { + font-size: 5rem; + text-align: center; +} + +footer { + text-align: left; + color: midnightblue; +} + +.tile-image { + height: 200px; + float: left; + margin-right: 50px; +} + +.left { + float: left; +} + +.right { + float: right; + margin-top: 210px; + +} + +.creative { + color: midnightblue; +} + +.card { + width: 45%; +} + +.left .tile-image { + border: 5px solid royalblue; + border-radius: 50%; +} + +.right .tile-image { + border: 5px solid dimgray; + border-radius: 50%; +} + +@media (max-width: 680px) { + + .logo{ + width: 100px; + } + + .card { + width: 100%; + display: block; + text-align: justify; + margin-bottom: 30px; + } + + .card img { + width: 100%; + margin-bottom: 10px; + display: inline; + object-fit: cover; + } + + h1 { + font-size: 3.5rem; + text-align: center; + } + + .right { + margin-top: 0px; + } + +} +