-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (47 loc) · 1002 Bytes
/
style.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
*{
margin: 0px;
padding: 0px;
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
body{
background-image: url("fondo.jpeg");
background-size: 100%;
text-align: center;
background-repeat: no-repeat;
background-position: center;
font-family: 'Dancing';
}
.cartaRamdon{
text-align: center;
background-repeat: no-repeat;
background-position: center;
}
h1{
text-shadow: .1rem;
background-color: aliceblue;
}
div{
width: 40%;
margin-left: auto;
margin-right: auto;
text-align: center;
border-radius: 20px;
border: none;
font-family: 'Dancing';
background-color: rgb(216, 231, 173);
}
img{
text-align: center;
height: auto;
width: auto;
}
#btn{
text-align: center;
border-radius: 20px;
border: none;
cursor: pointer;
padding: 10px 20px;
margin:10px;
background-color: rgb(231, 121, 231);
text-transform: uppercase;
}