-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilos.css
More file actions
52 lines (45 loc) · 986 Bytes
/
estilos.css
File metadata and controls
52 lines (45 loc) · 986 Bytes
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
*{ /*se aplica a todo el body*/
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
color: #fff;
}
.main-image{
background-image: url("forest.jpg");
background-position: center bottom;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 1rem;
text-align: center;
}
.main-image h1{
font-size: 4rem;
margin-bottom: 1rem;
}
.main-image p{
font-size: 1.5rem;
margin-bottom: 3rem;
}
.main-image .btn{
background: none;
color: #fff;
border: 2px solid #fff;
border-radius: 3px;
padding: 1rem 2rem;
font-size: 1rem;
text-transform: uppercase;
font-weight: bold;
cursor:pointer;
}
.main-image h1 .strike{
text-decoration: line-through;
}