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

+
+
+ HD Music Icon +

HD Music

+

Listen to music as if you were listening live

+
+
+ Stream Icon +

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 Logo +
+ +
+ Spotify App +
+ +
+ diff --git a/styles/style.css b/styles/style.css index 55efb32c6..103a5e456 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,215 @@ -/* -Colors: -Text: 1A1A1A -Green: #00B172 -White: #FFF + .poppins-light { + font-family: "Poppins", sans-serif; + font-weight: 300; + font-style: normal; + } + + .poppins-regular { + font-family: "Poppins", sans-serif; + font-weight: 400; + font-style: normal; + } -*/ + .poppins-bold { + font-family: "Poppins", sans-serif; + font-weight: 700; + font-style: normal; + } + + + + .poppins-black { + font-family: "Poppins", sans-serif; + font-weight: 900; + font-style: normal; + } + + + + + +/* Reseteo de estilos generales */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: poppins; +} + +/* Estilo general del cuerpo */ +body { + background-color: #FFF; /* Fondo blanco */ + color: #1A1A1A; /* Color de texto */ + font-size: 16px; +} + +/* Estilos del encabezado y la barra de navegación */ +.header { + background-color: #FFF; /* Fondo blanco */ + position: fixed; /* Fijo en la parte superior */ + width: 100%; + top: 0; + z-index: 1000; + border-bottom: 1px solid #e6e6e6; /* Borde inferior */ +} + +.container { + width: 80%; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; + padding: 15px 0; +} + +.logo img { + height: 40px; +} + +.header-nav ul { + list-style: none; + display: flex; + gap: 30px; /* Espacio entre los enlaces */ +} + +.header-nav ul li a { + text-decoration: none; + color: #1A1A1A; /* Color de los enlaces */ + font-weight: bold; +} + +/* Estilo de la sección hero */ +.hero { + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + text-align: center; + background: url('../images/landing.jpg') center/cover no-repeat; /* Imagen de fondo */ + padding-top: 60px; /* Compensa el navbar fijo */ +} + +.hero-text { + max-width: 700px; +} + +.hero-text h1 { + font-size: 50px; + margin-bottom: 20px; + color: #FFF; /* Texto blanco */ + +} + +.hero-text p { + max-width: 600px; + font-size: 25px; + line-height: 1.5; + color: #FFF; + font-weight: 100; +} + +/* Estilo de la sección de características */ +.sectionFeature{ + display: flex; + flex-direction: column; + align-items: center; + max-width: 100vw; +} +.textFeatures{ + padding: 50px 0; + font-size: 25px; + font-weight: 600 +} +.cardsFeatures{ + display: flex; + align-items: center; + justify-content: space-around; + padding-bottom: 50px; +} +.feature{ + display: flex; + flex-direction: column; + align-items: center; + justify-self: center; + width: 400px; +} +.cardsFeatures .feature img { + height: 90px; + margin-bottom: 20px; +} + +.cardsFeatures .feature h3 { + font-size: 20px; + margin-bottom: 10px; + color: #00B172; /* Verde */ +} + +.cardsFeatures .feature p { + width: 200px; + font-size: 16px; + line-height: 1.4; + text-align: center; + font-weight: 200; +} + +/* Estilo de la sección de contenido verde */ +.content { + display: flex; + justify-content: space-between; + align-items: center; + padding: 50px 0; + background-color: #00B172; + color: #FFF; + position: relative; + margin-top: 20px; + max-width: 100vw; + padding: 60px; +} + + .tittle{ + font-size: 30px; + text-decoration: underline; + text-underline-offset: 10px + } + .text-content{ + height: 50em; + padding: 2rem 0 0 0; + } + +.text{ + display: flex; + flex-direction: column; + justify-content: space-evenly; + height: 40em; + width: 33vw; +} +.text h4{ + font-size: 28px; + font-weight: 900; + +} +.text p{ + font-size: 20px; + font-weight: 200; + line-height: 1.5; + margin-top: -80px; +} +.logo-spotify img{ + height: 130px; + align-items: center; + +} +.logo-spotify{ + width: 33vw; + display: flex; + flex-direction: column; + align-items: center; +} + +.image-music img{ + height: 40em; +} +.image-music{ + width: 33vw; +} \ No newline at end of file