-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (81 loc) · 1.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&display=swap");
/* font-family: 'Big Shoulders Display', cursive;
font-family: 'Lexend Deca', sans-serif; */
body {
background-color: hsl(0, 0%, 95%);
display: flex;
align-items: center;
font-size: 15px;
min-height: 100vh;
font-family: "Lexend Deca", sans-serif;
font-weight: 400;
}
.container {
max-width: 1440px;
margin: o auto;
}
.wrapper {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
border-radius: 10px;
overflow: hidden;
margin: 6rem
}
.box1{
background-color:hsl(31, 77%, 52%) ;
}
.box2{
background-color:hsl(184, 100%, 22%)}
.box3{
background-color:hsl(179, 100%, 13%)
}
.box{
padding: 40px;
}
.box h2{
font-family: 'Big Shoulders Display';
font-weight: 700;
color: white;
font-size: 30px;
text-transform: uppercase;}
.box p{
line-height: 1.6rem;
color: white;
margin-bottom: 75px;
}
.box a{
text-decoration: none;
background-color: white;
padding: 13px 27px;
margin-top: 60px;
display: inline;border-radius: 26px;
border: 2px solid white;
}
.box1 a{
color:hsl(47, 100%, 48%);
}
.box2 a{
color:hsl(184, 100%, 22%);}
.box3 a{
color:hsl(179, 100%, 13%);}
.box a:hover{
color:hsl(31, 77%, 52%)
;
background-color:transparent ; }
@media only screen and (max-width:768px){
.wrapper{
grid-template-columns: 1fr;
}
}
@media only screen and (max-width
:425px) {
.wrapper
{ margin: 2rem 5rem;}
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}