-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (91 loc) · 1.66 KB
/
styles.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, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #AECCF2;
}
.container {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
}
.header {
position: relative;
height: 35vh;
background: url('assets/hero.jpeg') no-repeat center;
background-size: cover;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(3, 90, 166, 0.5);
display: flex;
justify-content: center;
align-items: flex-end;
}
.overlay-text {
color: white;
font-family: "League Spartan", sans-serif;
font-optical-sizing: auto;
font-size: 3rem;
line-height: 1.5;
font-weight: 900;
margin-bottom: 50px;
text-align: center;
}
.separator {
height: 2px;
background-color: #C1FF72;
z-index: 2;
}
.content {
flex: 1;
background: url('assets/doodles-v2.png') no-repeat center center;
background-size: cover;
background-color: #004aad;
display: flex;
justify-content: center;
align-items: center;
color: white;
padding: 20px;
text-align: center;
position: relative;
}
.text {
z-index: 1;
width: 100%;
}
.logo {
width: 120px;
}
.url-container {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}
.url-link {
padding: 10px 20px;
border-radius: 5px;
background-color: #C1FF72;
color: #035AA6;
text-decoration: none;
font-weight: bold;
}
.url-link:hover {
background-color: #AECCF2;
}
@media screen and (max-width: 768px) {
.overlay-text {
font-size: 2rem;
}
}
@media screen and (min-width: 1000px) {
.header {
background: url('assets/hero.jpeg') no-repeat center 20%;
}
}