candifloss_site/scss/index.scss
2024-12-11 03:33:11 +05:30

49 lines
970 B
SCSS

$bg-color: linear-gradient(135deg, #2c2c54, #40407a);
$text-color: #ffffff;
$link-hover-color: #a29bfe;
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: $bg-color;
color: $text-color;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
h1 {
font-size: 4rem;
margin: 0;
padding: 0.5em;
}
nav {
ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 1.5rem;
li {
a {
text-decoration: none;
color: $text-color;
font-size: 1.2rem;
transition: color 0.3s;
&:hover {
color: $link-hover-color;
}
}
}
}
}
}