29 lines
No EOL
464 B
CSS
29 lines
No EOL
464 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;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: black;
|
|
color: lightpink;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Centered Content */
|
|
.centered-content {
|
|
text-align: center;
|
|
}
|
|
|
|
#blahaj {
|
|
opacity: 0;
|
|
} |