-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
57 lines (50 loc) · 1.13 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
body {
width: 100vw;
height: 100vh;
box-sizing: content-box;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background: #FFEFBA; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FFFFFF, #FFEFBA); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
}
.heading {
font-size: 60px;
margin-bottom: 6px;
}
.subcontainer {
margin-top: 120px;
display: flex;
background-color: rgb(240, 224, 172);
width: 1000px;
height: auto;
padding: 50px;
justify-content: center;
gap: 36px;
border-radius: 24px;
}
.box {
width: 300px;
height: auto;
border-radius: 24px;
}
.image {
width: 300px;
object-fit: cover;
}
.image:hover {
transform: scale(1.2)
}
.img-subtitle {
text-align: center;
margin-bottom: 0;
font-size: 32px;
cursor: pointer;
}