19 lines
357 B
CSS
19 lines
357 B
CSS
|
body {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
background: #e17055;
|
||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
a:visited {
|
||
|
text-decoration: none;
|
||
|
color: #273c75;
|
||
|
}
|