-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
104 lines (88 loc) · 1.55 KB
/
main.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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #95D2E4;
}
.container {
margin-left: calc(50% - 700px);
width: 1400px;
background-color: white;
}
.main-header {
display: flex;
justify-content:space-between;
align-items: center;
margin-top: 100px;
}
.logo {
width: 100px;
height: 40px;
margin-left: 5%;
margin-top: 2%;
object-fit: contain;
object-position: left;
}
.main-nav {
display: flex;
gap: 40px;
margin-right: 5%;
margin-top: 2%;
}
.main-nav> .link {
text-decoration: none;
font-weight: bold;
color: black;
font-size: 20px;
}
.main-nav> .link:hover {
text-decoration: underline;
}
.main-content {
display: flex;
align-items: center;
gap: 20px;
}
.left-column {
width: 40%;
margin-left: 5%;
font-size: 30px;
}
.title {
font-size: 70px;
}
.title span {
font-weight: normal;
display: block;
}
.title::after {
content: '';
display: block;
width: 160px;
height: 4px;
background-color: #95D2E4;
margin-top: 5px;
}
.btn {
border-radius: 1.6em;
background-color: #95D2E4;
float: left;
color: white;
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
font-size: 16px;
line-height: 1em;
padding: 1em;
padding-left: 2.5em;
padding-right: 2.5em;
margin: 0.5em;
margin-left: 0;
border: 0.1em solid #95D2E4;
}
.btn:hover {
background-color: white;
color: black;
}
.main-image {
width: 50%;
}