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

*{
    font-family: 'Degular Demo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
    font-family: sans-serif;
    font-weight: 400;
    color: #ffe1b0;
}

html, body{
    background-color: #2d1a0a;
}

canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
}

header{
    position: relative;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    background: black;
}

header h1{
    font-size: 1rem;
}

.hero {
    position: relative;
    height: calc(100svh - 60px);
}

.hero h1{
    position: absolute;
    bottom: 2rem;
    left: 2rem
}

.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: #000000;
    font-size: 18px;
    display: block;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Degular Demo', sans-serif;
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 10s ease-in, transform 0.3s ease;
}

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

.glass-btn.visible {
    opacity: 1;
    pointer-events: all;
}