-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
69 lines (61 loc) · 1.11 KB
/
index.css
File metadata and controls
69 lines (61 loc) · 1.11 KB
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
/* General */
body {
font-family: 'Roboto', sans-serif;
background-color: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 600px;
}
h1 {
font-size: 2.5rem;
color: #2196F3;
margin-bottom: 20px;
}
h2 {
font-size: 1.8rem;
margin-top: 20px;
color: #333;
}
p {
font-size: 1rem;
line-height: 1.6;
margin-top: 10px;
}
.button {
display: inline-block;
padding: 10px 20px;
font-size: 1.2rem;
color: #fff;
background-color: #2196F3;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.button:hover {
background-color: #1976D2;
}
/* Estilo para la sección informativa */
.info-section {
text-align: left;
margin-top: 30px;
}
/* Responsive Design */
@media (max-width: 600px) {
h1 {
font-size: 2rem;
}
.button {
font-size: 1rem;
}
}