-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
102 lines (87 loc) · 1.75 KB
/
contact.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
.navbar .menu-icon {
background:#6A6BF4 !important;
}
.hero {
height:90vh;
background-image:linear-gradient(rgba(0, 0, 0, 0.3),
rgba(0, 0, 0, 0.3)), url("ns.jpg");
background-position: 50% 30%;
background-repeat: no-repeat;
background-size: 100%;
color:white;
display: flex;
align-items: flex-end;
flex-direction: row;
padding: 0 5vw;
padding-bottom:5vh;
}
.hero h1 {
font-size:9vw;
font-weight:400;
line-height:1;
letter-spacing:-5px;
margin-top:10vh;
}
.hero .title-container {
display:flex;
justify-content:space-between;
align-items:flex-end;
width:90vw;
}
.hero a img {
height:7vw;
}
.hero a {
position:relative;
overflow:hidden;
display:inline-block;
border-radius:100%;
width:max-content;
aspect-ratio:1/1;
margin-bottom:3vh;
}
.navbar {
background:rgba(255,255,255,0.4);
backdrop-filter: blur(40px);
border: 1px solid rgba(255,255,255,0.15);
}
.hero a {
z-index:2;
}
.hero a::before {
z-index:-1;
background:white;
}
.contact-div {
padding:10vh 10vw;
display:flex;
gap:5vh;
flex-direction: column;
align-items: center;
}
.contact-div div {
display:flex;
flex-direction: column;
gap:1.5vh;
align-items: center;
}
@media screen and (max-width:1300px) {
.hero a {
margin-bottom:0;
display:none;
}
.hero {
background-size:cover !important;
}
.contact-div h2, .contact-div p {
font-size:5vw !important;
}
}
@media screen and (max-width:1000px) {
.hero h1 {
font-size:13vw;
}
.footer {
padding-top:0;
}
}