odin-codespace/tictactoe/css/style.css
2023-12-13 16:15:21 -05:00

22 lines
250 B
CSS

:root {
font-size: 16px;
}
body,html {
width: 100vw;
margin: 0;
padding: 0;
}
header h1 {
font-size: 2rem;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}