21 lines
363 B
CSS
21 lines
363 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Sarabun&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Sarabun', sans-serif;
|
|
font-weight: 400;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: black;
|
|
color: lightpink;
|
|
padding-top: 6%;
|
|
padding-bottom: 3.5%;
|
|
}
|
|
|