-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (40 loc) · 764 Bytes
/
style.css
File metadata and controls
46 lines (40 loc) · 764 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lato&display=swap');
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
font-family: 'Inter', sans-serif;
text-align: center;
background-color: hsl(212, 45%, 89%);
}
.container {
width: 400px;
height: 600px;
background-color: white;
border-radius: 15px;
margin: auto;
}
img {
max-width: 100%;
margin-top: 20px;
height: 350px;
border-radius: 10px;
}
h1 {
font-size: 25px;
font-weight: bol;
margin: 20px 30px;
}
p {
color: hsl(220, 15%, 55%);
font-size: 18px;
margin: 20px 30px;
font-weight: 300px;
}
.attribution {
text-align: center;
font-size: 18px;
}