blob: 78daa4c21b38217162cd66a9cb47af96e3dad3a8 (
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
|
body {
padding: 0;
margin: 0;
box-sixing: border-box;
background-color: #0A0A0A;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
width: 100%;
height: 100vh;
color: #fff;
text-align: center;
font-size: 1.2rem;
}
button {
border-radius: 50px;
padding: 15px;
background-color: rgba(0,136,169,1);
border: none;
cursor: pointer;
font-size: 1.1rem;
}
|