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