50projects50days/_project_starter_/style.css

17 lines
313 B
CSS
Raw Normal View History

2020-09-03 20:04:14 +00:00
@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;
2020-10-05 22:06:09 +00:00
margin: 0;
2020-09-03 20:04:14 +00:00
}