-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (61 loc) · 1.21 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
61
62
*{
margin: 0;
padding: 0;
}
.attribution {
font-size: 11px;
text-align: center;
font-family: 'Outfit', sans-serif;
font-weight: 400;
margin-bottom: 1rem;
}
.attribution a {
color: hsl(228, 45%, 44%);
font-weight: 700;
text-decoration: none;
transition: color 0.6s ease;
}
.attribution a:hover{
color: hsl(258, 45%, 60%);
}
h1,p{
font-family: 'Outfit', sans-serif;
}
h1{
font-weight: 700;
font-size: 1.375rem;
line-height: 1.75rem;
color: #1f314f;
}
p{
font-weight: 400;
font-size: 0.938rem;
color: #7D889E;
line-height: 19px;
width: 90%;
margin: 1rem auto;
}
body{
background-color: #D5E1EF;
min-height: 100vh;
overflow: hidden;
position: relative;
}
.box{
width: min(320px,80%);
background-color: white;
padding: 1rem;
border-radius: 20px;
box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.476518);
text-align: center;
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
img{
border-radius: 10px;
width: 100%;
margin-bottom: 1.5rem;
}