body {
    color: white;
    display: flex;
    background-color: #000;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    text-align: center;
    width: 100%;
    height: auto;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 
    0 1px 2px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.4);
}

h1 {
    font-size: 6rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 5px;
    text-shadow: 
    0 1px 2px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.4);
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    margin-top: 30px;
    text-shadow: 
    0 1px 2px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.4);
}

.button {
    display: inline-block;

    padding: 10px 14px;
    border-radius: 100px;

    background-image: 
    linear-gradient(rgb(8,106,251), rgb(8,106,251)),
    linear-gradient(-40deg, #0041CD 0%, #3194F2 100%);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 4px solid transparent;

    color: white;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;

    margin-top: 15px;

    padding: 15px 0;

    cursor: pointer;
    text-decoration: none;

    width: 320px;

    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-0.5px) scale(1.01);

    box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.7);
}

.floating-btn {
    position: fixed;
    z-index: 10000;

    padding: 10px 14px;
    border-radius: 32px;

    background: rgba(39,39,39, 0.73);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 0.8rem;
    font-weight: 200;

    border: none;
    cursor: pointer;
    text-decoration: none;

    transition: background 0.2s ease, transform 0.15s ease;
}

.floating-btn:hover {
    background: rgba(60,60,60,0.8);
    transform: scale(1.05);
}

.bottom-btn {
    bottom: 20px;
    right: 20px;
}

.anchored-top-text {
    position: fixed;
    z-index: 10000;

    top: 10px;
}