challenge-landing-page/css/style.css

69 lines
1.1 KiB
CSS
Raw Normal View History

2022-10-12 01:07:45 +00:00
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
padding: 0;
margin: 0;
font-family: "Inter", sans-serif;
2022-10-11 19:06:41 +00:00
}
2022-10-12 01:07:45 +00:00
.header-logo {
background-color: black;
display: flex;
justify-content: center;
2022-10-11 19:06:41 +00:00
}
2022-10-12 01:07:45 +00:00
.logo {
width: 12%;
margin-top: 29px;
margin-bottom: 29px;
2022-10-11 19:06:41 +00:00
}
2022-10-12 01:07:45 +00:00
.header-computer {
width: 100%;
2022-10-11 20:44:28 +00:00
}
2022-10-12 01:07:45 +00:00
.computers {
width: 100%;
display: flex;
justify-content: center;
margin-top: 73px;
2022-10-11 20:44:28 +00:00
}
2022-10-12 01:07:45 +00:00
.info {
text-align: center;
margin: 73px;
}
.image-computer {
2022-10-13 00:06:28 +00:00
margin-bottom: 6rem;
2022-10-11 20:44:28 +00:00
}
2022-10-12 01:07:45 +00:00
p {
font-size: 16px;
line-height: 24px;
font: weight 400px;
text-align: center;
justify-content: center;
2022-10-11 20:44:28 +00:00
}
2022-10-12 01:07:45 +00:00
.text {
margin-top: 28px;
2022-10-11 20:44:28 +00:00
}
2022-10-12 01:07:45 +00:00
.lorem {
font-size: 32px;
font-weight: 400px;
line-height: 38px;
2022-10-11 20:44:28 +00:00
}
2022-10-12 01:07:45 +00:00
.dolor {
font-size: 48px;
font-weight: 500px;
line-height: 58px;
}
.square{
box-shadow: 0px 4px 20px #0000003b;
text-align: center;
padding: 1em;
flex: 1 1 250px;
background-color: white;
padding: 3em 0;
align-items: center;
}
.container-3{
display: flex;
gap: 1em;
flex-wrap: wrap;
padding: 1em;
2022-10-11 20:44:28 +00:00
}