Files
CSS_Demos/50Days/boilerplate/style.css
2021-04-09 17:18:49 +02:00

17 lines
313 B
CSS

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}