index — krinitsin.com @ 45155a961723f78b9746d3be3af931e505b5eb35

personal website

styles.css (view raw)

 1@import url("https://www.nerdfonts.com/assets/css/webfont.css");
 2@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
 3
 4body {
 5    background-color: #2d353b; /* Dark background color */
 6    color: #d3c6aa; /* Text color */
 7    font-family: Arial, sans-serif;
 8    display: flex;
 9    justify-content: center;
10    align-items: center;
11    height: 100vh;
12    margin: 0;
13}
14
15.container {
16    text-align: center;
17}
18
19.symbol {
20    font-size: 7em;
21    margin-bottom: 30px;
22}
23
24h1 {
25    font-family: "Roboto Slab";
26    font-size: 3em;
27    margin: 0;
28}
29