body {
    font-family: 'Arial', sans-serif;
}

.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.nav-item {
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

.custom-button-dark {
    background-color: #00172f;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-button-dark:hover {
    background-color: #001c36;
    transform: scale(1.05);
}

.custom-button-light {
    background-color: #002853;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-button-light:hover {
    background-color: #013464;
}