-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgracias.css
131 lines (102 loc) · 2.02 KB
/
gracias.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Fuentes tipográficas */
@import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&display=swap');
/* Estilos generales */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 22.4px;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #cbb89d;
color: #fff;
}
#container {
max-width: 1500px;
margin: 0 auto;
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url('img/img-error404.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
text-align: center;
padding: 20px;
}
.heading {
font-family: 'Baskervville SC', serif;
font-size: 10rem;
color: #cbb89d;
text-shadow: 4px 4px 15px #fff;;
}
.sub-heading {
font-size: 1.5rem;
margin-bottom: 20px;
color: #141414;
font-family: 'Baskervville SC', serif;
}
.buttons {
margin-top: 20px;
}
.btn {
padding: 10px 50px;
margin: 0 10px;
background-color: transparent;
color: #141414;
border: none;
cursor: pointer;
font-size: 1.5rem;
border-radius: 10px;
transition: 0.5s;
}
.btn:hover {
background-color: #665c4f;
color: #fff;
transition: 0.5s;
}
.btn.active {
background-color: #665c4f;
color: #fff;
}
#container .buttons a {
text-decoration: none;
}
/*media querys*/
/*celulares*/
@media screen and (max-width: 480px) {
#container {
background-size: cover;
}
.heading {
font-size: 3rem;
}
.sub-heading {
font-size: .7rem;
}
.btn {
font-size: .7rem;
}
}
/*tablets*/
@media screen and (min-width:481px) and (max-width: 768px) {
.sub-heading {
font-size: 1rem;
}
#container {
background-size: cover;
}
.heading {
font-size: 5rem;
}
.btn {
font-size: 1rem;
}
}