-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (48 loc) · 1.11 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
img{
max-width: 100%; }
body{
font-family: 'Outfit', sans-serif;
font-size: 15px;
background-color: hsl(212, 45%, 89%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh-1px);
margin: 2.25rem;
}
.container{
background-color:hsl(0, 0%, 100%);
padding: 1.25rem;
border-radius: 0.5rem;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
width: 400px;
margin-bottom: 1rem;
text-align: center;
}
.container h1 {
text-align: center;
color: hsl(218, 44%, 22%);
margin-bottom: 0.5rem;
}
.container p {
color: hsl(220, 15%, 55%);
text-align: center;
}
.container img{
margin-bottom: 1rem;
border-radius: 1rem;
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
@media (min-width:500px) {
.container{
width: 400px;
}
}