IFCD0210/Practicas/Practicas JS/Introduccion/estilos.css
Marcos Lopez fa0b1bad1c Dia 24
2024-01-10 13:48:15 +01:00

47 lines
708 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Poppins', sans-serif;
min-height: 100vh;
width: 100%;
background: #eaeaea;
color: #000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
font-size: 80px;
}
h2 {
font-size: 40px;
font-weight: normal;
margin-bottom: 40px;
color: #848484;
}
button {
border: none;
background: #2553df;
font-family: 'Poppins', sans-serif;
font-size: 22px;
cursor: pointer;
border-radius: 10px;
color: #fff;
padding: 14px 28px;
margin-bottom: 20px;
}
button:hover {
background: #1942be;
}