21 lines
416 B
CSS
21 lines
416 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100vw;
|
|
min-height: 100vh;
|
|
background-image: radial-gradient(
|
|
circle 993px at 0.5% 50.5%,
|
|
rgba(137, 171, 245, 0.37) 0%,
|
|
rgba(245, 247, 252, 1) 100.2%
|
|
);
|
|
font-family: "Varela Round", sans-serif;
|
|
}
|