-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (59 loc) · 1.01 KB
/
styles.css
File metadata and controls
67 lines (59 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--white: hsl(0, 0%, 100%);
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
}
body {
font-family: 'Outfit', sans-serif;
background-color: var(--light-gray);
}
.container {
width: 90%;
background-color: var(--white);
padding: 0.1px;
margin: 80px auto;
border-radius: 18px;
}
.img {
display: block;
width: 90%;
margin: 0 auto;
margin-top: 20px;
border-radius: inherit;
}
.title {
text-align: center;
width: 90%;
margin: 20px auto;
font-weight: 700;
font-size: 25px;
color: var(--dark-blue);
}
.parrafo {
text-align: center;
margin: 20px 36px;
font-size: 15px;
font-weight: 400;
color: var(--grayish-blue);
padding-bottom: 20px;
}
@media screen and (min-width: 1440px) {
body {
height: 100vh;
display: flex;
flex-direction: column;
}
.container {
margin-top: 40%;
width: 30%;
}
.attribution {
padding-bottom: 20px;
}
}