body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend';
    background-color: #000;
}

.navbar {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 10px;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.menu a img {
    margin-right: 5px;
}

.menu a:hover {
    color: darkgray;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 150%;
    z-index: -1;
}

.content {
    margin-top: 100px;
    text-align: center;
    color: white;
}

h1 {
    font-size: 2.7em;
}

h2, h3, h4, h5, h6, p {
	color: white;
	text-align: center;
}

button {
        padding: 13px 23px;
        background-color: #000;
        color: #fff;
        border: 2px solid #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        margin-left: 10px;
        transition: transform 0.3s, filter 0.3s;
    }
button:hover {
    transform: scale(1.1);
    filter: invert(1);
}

.link-redirect {
  color: #575757; 
}

.link-redirect a {
  color: #575757; 
  text-decoration: none; 
}

.link-redirect a:hover {
  text-decoration: underline; 
}
