-
Notifications
You must be signed in to change notification settings - Fork 21
/
style.css
127 lines (106 loc) · 1.75 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'IBM Plex Mono', 'IBM ';
}
nav {
height: 80px;
background: #000;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0rem calc((100vw - 1300px) / 2);
}
.logo {
color: #fff;
font-size: 1.5rem;
font-weight: bold;
padding: 0 2rem;
}
nav a {
text-decoration: none;
color: #fff;
padding: 0 1.5rem;
}
.contact-content a {
text-decoration: underline;
color: #000;
}
.contact-content a:hover {
color: #fff;
}
nav a:hover {
color: #fff;
}
.hero {
background: #ed69b5;
}
.hero-container {
display: grid;
grid-template-columns: 1fr 1fr;
height: min-content;
padding: 3rem calc((100vw - 1300px) / 2);
}
.column-left {
display: flex;
flex-direction: column;
align-items: flex-start;
color: #000;
padding: 0rem 2rem;
}
.column-left h1 {
margin-bottom: 1rem;
font-size: 3rem;
}
.column-left p {
margin-bottom: 2rem;
font-size: 1.2rem;
line-height: 1.1;
text-align: justify;
}
button {
padding: 1rem 3rem;
font-size: 1rem;
border: none;
color: #fff;
background: #000;
cursor: pointer;
border-radius: 50px;
}
button:hover {
background: #fff;
color: #000;
}
.column-right {
display: flex;
flex-direction: column;
align-items: flex-start;
align-items: center;
padding: 0rem 2rem;
}
.column-right p {
margin-bottom: 2rem;
font-size: 1.2rem;
line-height: 1.1;
text-align: justify;
}
.hero-image {
width: 150%;
height: 80%;
}
.contact-head {
justify-content: center;
align-items: center;
font-size: 50px;
font-weight: bold;
padding-top: 20%;
}
.contact-content{
font-size: 25px;
}
@media screen and (max-width: 768px) {
.hero-container {
grid-template-columns: 1fr;
}
}