@import url('https://fonts.googleapis.com/css2?family=Gentium+Book+Plus:wght@400;700&display=swap');
body {
font-family: 'Gentium Book Plus', serif;
background-color: #000;
color: #fff;
}

.header {
text-align: center;
margin-top: 50px;
}

.header img {
height: 500px;
width: 500px;
}

.navbar {
display: flex;
justify-content: center;
margin-top: 50px;
overflow-x: auto;
}

.navbar ul {
list-style: none;
display: flex;
padding: 0;
}

.navbar li {
margin-right: 20px;
}

.navbar a {
color: #fff;
text-decoration: none;
font-size: 18px;
}

.navbar a:hover {
color: #ffa500;
animation: glow 1s ease-in-out infinite alternate;
}

.particles {
height: 100vh;
width: 100%;
position: absolute;
top: 0;
left: 0;
background-image: url(particles.png);
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
}
