-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (88 loc) · 1.58 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
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
/*.logo a {
color: #fff;
text-decoration: none;
font-weight: bold;
font-size: 24px;
}*/
.nav-links a {
color: #fff;
text-decoration: none;
margin-left: 20px;
}
.hero {
background-image: url('hero-bg.jpg');
background-size: cover;
background-position: center;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
}
.hero-content {
max-width: 800px;
}
.hero-content h1 {
font-size: 48px;
margin-bottom: 20px;
}
.hero-content p {
font-size: 24px;
margin-bottom: 40px;
}
.btn {
background-color: #fff;
color: #333;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
}
.services {
padding: 50px;
text-align: center;
}
.service-cards {
display: flex;
justify-content: center;
}
.card {
max-width: 300px;
margin: 20px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.card img {
max-width: 100%;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.logo img {
max-width: 300px; /* Ajusta este valor según tus necesidades */
}
@media (max-width: 768px) {
.logo img {
max-width: 250px; /* Ajusta el tamaño para pantallas más pequeñas */
}
}