diff --git a/index.html b/index.html index 0697f92..63e7c1d 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,64 @@ 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 - Listen to music as if you were listening live Stream Everywhere Stream music on your smartphone, tablet or computer - It’s as yeezy as Kanye West. Search Know what you want to listen to? Just search and hit play. Browse Check out the - latest charts, brand new releases and great playlists for right now. Discover Enjoy new music every Monday with your - own personal playlist. Or sit back and enjoy Radio. + + + +
+
+

Music for everyone.

+

Spotify is now free on mobile, tablet and computer.

+

Listen to the right music, wherever you are.

+
+
+
+

What’s on Spotify?

+
+
+ music icon +
Millions of Songs
+

There are millions of songs on Spotify

+
+
+ high quality icon +
HD Music
+

Listen to music as if you were listening live

+
+
+ Devices +
Stream Everywhere
+

Stream music on your smartphone, tablet or computer

+
+
+
+
+
+

It’s as yeezy as Kanye West.

+
+
Search
+

Know what you want to listen to? Just search and hit play.

+
+
+
Browse
+

Check out the latest charts, brand new releases and great playlists for right now.

+
+
+
Discover
+

Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.

+
+
+ Spotify app +
diff --git a/styles/style.css b/styles/style.css index 55efb32..daecbce 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,159 @@ Green: #00B172 White: #FFF */ + +/* NavBar */ + +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: Arial, sans-serif; + color: #1A1A1A; +} + +body { + margin: 0; + overflow-x: hidden; +} + +nav { + position: fixed; + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 50px; + background-color: #FFF; + width: 100vw; +} + +#logo { + width: 170px; +} + +#logo:hover { + cursor: pointer; +} + +nav a { + text-decoration: none; + list-style: none; + padding: 5px 10px; + margin: 5px; +} + +nav a:hover { + color: #00B172; +} + +/* Main section */ + +.section1 { + background-image: url('../images/landing.jpg'); + background-size: contain; + height: 100vh; + width: 100vw; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; +} + +.section1-title { + color: #FFF; + font-size: 65px; + font-weight: 100; + margin-bottom: 25px; +} + +.section1-text { + color: #FFF; + font-size: 20px; + font-weight: 100; + margin-bottom: 5px; +} + +/* Section 2 */ + +.section2-title { + text-align: center; + margin: 30px; + font-size: 30px; +} + +.spotify-info-container { + display: flex; + justify-content: space-around; + align-items: center; + flex-wrap: wrap; + margin: 0 80px; +} + +.spotify-info { + display: flex; + flex-direction: column; + align-items: center; + gap: 10px; + margin-bottom: 50px; + max-width: 250px; +} + +.spotify-info h6 { + color: #00B172; + font-size: 25px; + margin-bottom: 10px; +} + +.spotify-info p { + text-align: center; + font-size: 20px; +} + +.icon { + width: 120px; +} + +/* Section 3 */ + +#section3 { + background-color: #00B172; + display: flex; + justify-content: space-between; + align-items: center; + margin: 40px; + padding: 80px; + background-image: url('../images/spotify-icon-white.png'); + background-repeat: no-repeat; + background-size: 130px; + background-position: center; +} + +#section3 img { + width: 23vw; +} + +.section3-title { + color: #FFF; + font-size: 40px; + border-bottom: #FFF 4px solid; + max-width: fit-content; + padding: 8px; +} + +.section3-info { + max-width: 25vw; +} + +.section3-info h6 { + color: #FFF; + font-size: 30px; + font-weight: bold; + margin: 40px 0; +} + +.section3-info p { + color: #FFF; + font-size: 18px; + +} \ No newline at end of file