body{
    background-color: #000000;
    background: linear-gradient(to top, #878787, #000000);
    color: grey;
}

a{
    color: white;
    text-decoration: none;
}

a:hover{
    color: white;
    text-decoration: underline;
}

header{

}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

nav{
    display: flex;
  align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: grey;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    color: white;
}

aside{

}

main{
    height: 80vh;
}

footer{
    text-align: center;
    padding: 20px;
    color: #000000;
}

.active {
    color: white;
    font-weight: bold;
}