mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-07-13 21:00:37 -04:00
22 lines
250 B
CSS
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;
|
|
}
|