body {
    background: linear-gradient(180deg, #d3d2c0 0%, #fad6a4 100%) fixed;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    filter: blur(2px);
    z-index: 1;
}

.navbar, .main-content, .footer {
    position: relative;
    z-index: 2;
}

.navbar {
    background-color: rgba(34, 34, 34, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer {
    background-color: rgba(34, 34, 34, 0.9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}