body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #1a1a1a;
    color: white;
}

nav {
    background-color: #2d2d2d;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #007bff;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #007bff;
}

.links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 5px 10px;
    transition: 0.3s;
}

.links a:hover {
    background-color: #007bff;
    border-radius: 5px;
}

#view {
    padding: 40px;
    display: flex;
    justify-content: center;
}

.home-hero {
    text-align: center;
    margin-top: 100px;
}

.loading,
.error {
    font-size: 1.2rem;
    margin-top: 50px;
}