diff --git a/index.html b/index.html index 4a81684..3f4b3ed 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,54 @@ Spotify Clone + + + + - Premium Discover Help Download Music for everyone. Spotify is now free on mobile, tablet and computer. Listen to the - right music, wherever you are. What’s on Spotify? Millions of Songs There are millions of songs on Spotify HD Music + +
+ +
+ + + + +
+
+
+
+

Music for everyone

+

Spotify is now free on mobile, tablet and computer.
+ Listen to the right music, wherever you are. +

+ +
+ +
+

What’s on Spotify?

+
+ + + + \ No newline at end of file diff --git a/styles/style.css b/styles/style.css index 68b1e59..28f69df 100644 --- a/styles/style.css +++ b/styles/style.css @@ -3,4 +3,76 @@ Colors: Text: 1A1A1A Green: #00B172 White: #FFF -*/ \ No newline at end of file +*/ + +body, html{ + height: 100%; + margin: 0; + font-family: 'Roboto', sans-serif; +} +.container{ + display: flex; + position: fixed; + width: 100%; + justify-content: space-between; + align-items: flex-start; + background-color: white; + height: 4em; +} + +#Logo img{ + width: 10em; + display: flex; + align-items: baseline; + justify-content: flex-start; +} + + +.header--menu ul{ + display: flex; + flex-direction:row; + gap: 40px; + list-style: none; + align-items: baseline; + +} + +.header--menu li a{ + text-decoration: none; + color: #1A1A1A; +} + + +#landing{ + margin-top: 60px; + background-image: url(../images/landing.jpg); + height: 100%; + background-position: center; + background-repeat: no-repeat; + background-size: cover; + color: white; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +#titulo{ + font-size: 4em; + font-weight: 600; +} + +#subtitulo{ + font-size: 1.5em; + +} + +#titulo-2{ + display: flex; + align-items: center; + justify-content: center; +} + +h2{ + border-bottom: 2.5px solid #00B172; +}