-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (92 loc) · 2.29 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
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
}
header{
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
}
.img-wrapper{
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(0,0,0,0.8);
}
.img-wrapper img{
width: 100%;
height: 100%;
object-fit: cover;
animation: zoom 25s;
}
@keyframes zoom{
0%{
transform: scale(1.3);
}
100%{
transform: scale(1);
}
}
.banner{
position: absolute;
top: 30%;
left: 15%;
}
.banner h1{
color: #ffffff;
font-size: 50px;
font-family: "Baloo Da 2", serif;
font-weight: 200;
text-shadow: .3rem .4rem 2px rgba(0, 0, 0, .4);
line-height: 50%;
margin-bottom: 10%;
}
.banner p{
font-family: serif;
color: #fff;
font-size: 20px;
text-shadow: .2rem .2rem rgba(0, 0, 0, .4);
margin-bottom: 2rem;
}
.banner button{
font-family: "Muli", serif;
color: rgb(255, 255, 255);
font-size: 20px;
background: #870000;
text-transform: uppercase;
letter-spacing: 0.5rem;
background: -webkit-linear-gradient(to right, #190A05, #870000);
background: linear-gradient(to right, #f83e00, #870000);
padding: 1rem 2rem;
border: none;
border-radius: 5px;
cursor: pointer;
}
.menu{
position: absolute;
top: 10%;
right: 10%;
}
.menu ul li { display: inline; }
.menu li a{
font-weight: bold;
padding: 5px 10px;
margin: 0;
color: #fff;
background: -webkit-linear-gradient(to right, #190A05, #870000);
background: linear-gradient(to right, #f83e00, #870000);
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 10px;
font-family: Verdana, Tahoma, sans-serif;
text-transform: uppercase;
}
.menu li a:hover{
background: #ccc;
color: #000;
text-decoration: underline;
border-color: #000;
}