31 lines
404 B
CSS
31 lines
404 B
CSS
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
line-height: 1.5;
|
|
background-color: #fce6cb;
|
|
}
|
|
|
|
html {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 2px solid white;
|
|
margin-bottom: 1em;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0px 10px;
|
|
}
|
|
|
|
header h1 {
|
|
flex: 1;
|
|
}
|
|
|
|
footer {
|
|
border-top: 2px solid white;
|
|
margin-top: 1em;
|
|
padding: 0 10px;
|
|
}
|