diff --git a/index.html b/index.html index 0697f92fe..1f3ee56e0 100644 --- a/index.html +++ b/index.html @@ -4,15 +4,66 @@ + 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. + + +
+

What’s on Spotify?

+
+
+ music-icon +

Millions od Songs

+

There are millions of songs on Spotify

+
+
+ high-quality-icon +

HD Music

+

Listen to music as if you were listening live

+
+
+ devices-icon +

Stream Everywhere

+

Stream music on your smartphone, tablet or computer

+
+
+
+
+
+

It’s as yeezy as Kanye West.

+
+ +
+
+

Search

+

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-icon-white +
+
+ +
+
diff --git a/styles/style.css b/styles/style.css index 55efb32c6..6499b9ca3 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,134 @@ -/* -Colors: +html { + box-sizing: border-box; +} -Text: 1A1A1A -Green: #00B172 -White: #FFF +/* Estilos generales */ +body { + font-family: Arial, sans-serif; + text-align: center; + background-color: white + color: white; /* Texto blanco */ + margin: 0; + padding: 0; +} -*/ +/* Navegación */ +nav { + display: flex; + justify-content: space-between; + align-items: center; + padding: 20px; + background-color: white +} + +nav img { + width: 120px; /* Ajusta el tamaño del logo */ + height: auto; +} + +nav ul { + list-style: none; + display: flex; + justify-content: space-around; +} + +nav ul li { + margin: 0 15px; + cursor: pointer; + color: black; +} + +/* Banner principal */ +.banner { + background-image: url('../images/landing.jpg'); + background-size: cover; + background-position: center; + color: white; + width: 100%; + height: 600px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.banner h1 { + font-size: 2rem; + font-weight: bold; +} + +.banner p { + font-size: 1.2rem; + max-width: 600px; +} + +/* Sección "What's on Spotify" */ +section { + padding: 50px; +} + +article { + display: flex; + justify-content: space-around; + font-size: 16px; + align-items: center; + flex-wrap: wrap; +} + +article div { + text-align: center; + max-width: 300px; +} + +.wos { + text-decoration: underline; +} + +article h2 { + color: rgb(95, 199, 131); + font-size: 25px; +} + +article p { + color: rgb(81, 78, 78); +} + +article img { + width: 80px; + height: auto; +} + +/* Sección final */ +.iky { + background-color: rgb(95, 199, 131); + display: flex; + justify-content: space-between; + align-items: center; + padding: 40px; + color: white; + text-align: left; +} + +.iky div { + flex: 1; +} + +.iky h1 { + font-size: 2.4rem; + font-weight: bold; + text-decoration: underline; +} + +.iky h3 { + font-size: 2.2rem; + font-weight: bold; +} + +.iky p { + font-size: 1.5rem; +} + +.iky img { + width: 400px; + height: auto; +} \ No newline at end of file