12 lines
212 B
CSS
12 lines
212 B
CSS
body {
|
|
background-color: lightcoral;
|
|
color: white;
|
|
font-family: "Montserrat", sans-serif;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|