My Website
1@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
2
3body {
4 display: grid;
5 width: 100%;
6 height: 100%;
7 place-items: center;
8 align-items: center;
9}
10
11.carlssonswordle {
12 width: 400px;
13 height: 150px;
14 background-color: bisque;
15 border-radius: 5px;
16 display: grid;
17 place-items: center;
18 align-items: center;
19 font-family: 'Roboto', sans-serif;
20 font-size: 40px;
21 filter: drop-shadow(4px 4px 3px rgba(43, 43, 43, 50));
22 padding-left: 20px;
23}