-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (41 loc) · 916 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
body{
max-width: 100%s;
background-image: linear-gradient(to bottom, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
}
.heading{
text-align: center;
}
.heading{
font-family: 'Acme', sans-serif;
font-size: 5rem;
}
#items{
margin:auto;
margin-top:130px;
width: 80%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.item img{
width: 100%;
object-fit: cover;
}
.item{
overflow: hidden;
width: 150px;
height: 130px;
border: 6px solid royalblue;
margin: 30px;
border-radius: 20px;
}
.animation {
box-shadow: 0 3px 4px 0 #DBEDF3;
opacity: 0.5;
}