1body {
2 background: #151b29;
3 display: flex;
4 justify-content: center;
5}
6
7button {
8 background: none;
9 color: #ffa260;
10 border: 2px solid;
11 padding: 10px;
12 align-self: center;
13 transition: all 0.2s;
14}
15
16button:hover{
17 border-color: #f1ff5c;
18 box-shadow: 1px 5px 3px 1px #f1ff5c;
19 color: #fff;
20 transform: translate(-3px, -7px);
21}