forked from yashrasniya/URJAA-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.module.css
93 lines (81 loc) · 1.32 KB
/
About.module.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
.aboutSec {
height: 100%;
padding: 3rem 1.5rem;
backdrop-filter: blur(5px);
}
.about {
width: 100%;
display: flex;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.432);
padding: 4rem 5rem;
border-radius: 15px;
}
@media screen and (max-width: 768px) {
.about {
flex-direction: column;
}
}
.details {
flex-basis: 75%;
color: #fff;
}
.heading {
font-size: 4rem;
font-weight: 400;
margin-bottom: 0;
}
.heading1 {
font-size: 10rem;
text-transform: uppercase;
color: transparent;
font-weight: 700;
white-space: nowrap;
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #fff;
}
@media screen and (max-width: 480px) {
.heading1 {
font-size: 5rem;
margin-bottom: 2.5rem;
}
}
.para {
justify-content: center;
font-size: 1.5rem;
line-height: 2.5rem;
opacity: 90%;
}
.para:not(:last-child) {
margin-bottom: 2rem;
}
.composition {
display: flex;
justify-content: center;
align-items: center;
}
@media screen and (max-width: 768px) {
.about {
gap: 4rem;
}
.details {
order: 2;
}
.composition {
order: 1;
}
.heading1 {
font-size: 5rem;
}
}
.images {
box-shadow: 0 1.5rem 4rem rgba(#000, 0.4);
border-radius: 2px;
transition: all 0.2s;
z-index: 20;
outline-offset: 2rem;
width: 95%;
}
.btn {
margin-bottom: 40px;
}