100-project-100-days-website/100_projects/9-javaScript-auto-write-text/style.css

15 lines
248 B
CSS
Raw Normal View History

2023-03-02 17:26:29 +03:00
* {
box-sizing: border-box;
}
body {
background-color: #FFB6C1;
color: white;
2023-03-02 19:12:09 +03:00
font-size: 21px;
2023-03-02 17:26:29 +03:00
display: flex;
align-items: center;
justify-content: center;
margin: 0;
min-height: 100vh;
2023-03-02 19:12:09 +03:00
text-align: center;
}