blob: 0132b6177420b0ede3410490573e8490314e604d (
plain)
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
|
@font-face {
font-family: 'fontUno';
src: url('fonts/fontUno/Monoton-Regular.ttf');
}
@font-face {
font-family: 'fontDos';
src: url('fonts/fontDos/PressStart2P-Regular.ttf');
}
body {
padding: 0;
margin: 0;
box-sixing: border-box;
background-image: url("img/tres.png");
background-size:100%;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
text-align: center;
}
.innerDiv {
padding: 15px;
margin-left: 20%;
width: 45%;
color: black;
}
h1 {
color: rgba(0,136,169,1);
font-family:'fontUno';
}
p {font-family:'fontDos';}
button {
background-color: rgba(0,136,169,1);
border-radius: 50px;
padding: 15px;
border: none;
cursor: pointer;
text-decoration: none;
font-size: 1.3rem;
font-family:'fontDos';
}
a {
padding: 20px;
text-decoration: none;
}
|