27 lines
586 B
CSS
27 lines
586 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
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;
|
|
min-height: 100vh;
|
|
padding-top: 50px;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|