diff --git a/index.html b/index.html index 0697f92fe..ee3213f9a 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,70 @@ - - - - - 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. - + + + Spotify Replica + + + + + + +
+
+

Music for everyone.

+

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

+
+
+ +
+
+ Music Icon +

HD Music

+

Listen to music as if you were listening live

+
+
+ Devices Icon +

Stream Everywhere

+

Stream music on your smartphone, tablet or computer

+
+
+ Songs Icon +

Millions of Songs

+

There are millions of songs on Spotify

+
+
+ +
+
+

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 55efb32c6..e440e70cb 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,133 @@ -/* -Colors: +/* Reset básico */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} -Text: 1A1A1A -Green: #00B172 -White: #FFF +body { + font-family: Arial, sans-serif; + line-height: 1.6; + background-color: #fff; +} -*/ +/* Navbar */ +.navbar { + position: fixed; + top: 0; + width: 100%; + background-color: #000; + padding: 15px 30px; + display: flex; + justify-content: space-between; + align-items: center; + z-index: 1000; +} + +.logo img { + height: 40px; +} + +.nav-links { + list-style: none; + display: flex; + gap: 25px; +} + +.nav-links li a { + color: #fff; + text-decoration: none; + font-weight: bold; + transition: color 0.3s ease; +} + +.nav-links li a:hover { + color: #1db954; +} + +/* Hero Section */ +.hero { + height: 100vh; + background: url('../images/landing.jpg') no-repeat center center/cover; + display: flex; + align-items: center; + justify-content: center; + padding-top: 80px; /* offset for fixed navbar */ + color: white; + text-align: center; +} + +.hero-content { + max-width: 700px; +} + +.hero-content h1 { + font-size: 3em; + margin-bottom: 20px; +} + +.hero-content p { + font-size: 1.2em; +} + +/* Features Section */ +.features { + display: flex; + justify-content: space-around; + padding: 60px 40px; + text-align: center; +} + +.feature { + width: 30%; +} + +.feature img { + height: 100px; + margin-bottom: 20px; +} + +.feature h3 { + margin-bottom: 10px; + font-size: 1.5em; +} + +/* Green Section */ +.spotify-green { + background-color: #1db954; + color: white; + display: flex; + padding: 60px 40px; + position: relative; +} + +.green-text { + flex: 1; + padding-right: 40px; +} + +.green-text h2 { + font-size: 2.5em; + margin-bottom: 30px; +} + +.sub-feature { + margin-bottom: 20px; +} + +.sub-feature h3 { + font-size: 1.3em; + margin-bottom: 8px; +} + +.green-image img { + max-width: 100%; + height: auto; +} + +.spotify-logo { + position: absolute; + bottom: 20px; + left: 20px; + height: 50px; +}