-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 1.15 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
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@200;300;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'IBM Plex Serif', serif;
box-sizing: border-box;
}
.hero{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url("images/background.webp");
background-position: center;
background-size: cover;
padding: 10px 10%;
color: #FFF;
}
.hero h3{
margin-top: 15%;
font-weight: 400;
font-size: 30px;
}
.hero h1 span{
color: dodgerblue;
}
.hero h1{
margin-top: 30px;
font-size: 50px;
color: #FFF;
}
.hero p{
margin: 10px 0 50px;
}
form{
background: #FFF;
display: flex;
width: fit-content;
}
form input{
border: 0;
outline: none;
padding: 10px 20px;
height: 70px;
width: 400px;
font-size: 16px;
}
form button{
background: dodgerblue;
border: none;
outline: none;
height: 70px;
width: 100px;
cursor: pointer;
}
span{
color: #61b752;
margin-top: 10px;
display: block;
}