@font-face {
    font-family: 'Degular Demo';
    src: url('DegularDemo-Regular.woff') format('woff');
}

body {
    font-family: 'Degular Demo', sans-serif;
    font-size: 21px;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1 !important;
    filter: brightness(0.8);
}

.text {
    position: fixed !important;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    max-width: 90%;
}

.text p {
    margin: 10px 0;
    color: white;
    font-size: 1.2rem;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); 
    display: block; 
}

.glass-btn {
    background: rgba(255, 224, 194, 0.56);
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 30px;
    color: #f0f0f0; 
    font-size: 18px;
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Degular Demo', sans-serif;
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%) scale(1.05);
    color: #ffffff;
}