* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #050505;
    color: white;
    font-family: "Manrope", sans-serif;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.glow {
    display: none;
}

.container {
    position: relative;
    z-index: 2;
    margin-left: 10vw;
    max-width: 600px;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: -.06em;
}

p {
    margin-top: 24px;
    color: #b8b8b8;
    line-height: 1.7;
    font-size: 1.15rem;
}

a {
    display: inline-block;
    margin-top: 36px;
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.footer {
    margin-top: 48px;
    color: #666;
}

.back {
    display: inline-block;
    margin-top: 0;
    font-size: 0.9rem;
    color: #8f8f8f;
}

.back:hover {
    color: white;
}