18 lines
257 B
CSS
18 lines
257 B
CSS
body {
|
|
background-color: pink;
|
|
background-repeat: repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
header{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
justify-content: space-between;
|
|
width: 50vw;
|
|
border: solid purple 2px;
|
|
}
|
|
|
|
|
|
|