:root {
    --bg: #220041;
    --text: #fed700;
    --accent: #808080;
    --body-text: #f0f8ff;
}

html, body {
    height: 100%;
    font-family: 'Syne', sans-serif;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.background {
    background: #220041;
    position: fixed;
    inset: 0;
    z-index: 0;
}

.edge {
    position: fixed;
    color: #fed700;
    font-family: 'Syne', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    letter-spacing: 0.1em;
    z-index: 1;
}

.edge-one {
    top: 28px;
    left: 32px;
}

.edge-two {
    top: 28px;
    right: 32px;
}

.edge-three {
    bottom: 28px;
    left: 32px;
}

.edge-four {
    bottom: 28px;
    right: 32px;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    padding: 2rem;
    text-align: center;
}

.container-text {
    color: #f0f8ff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-top: 2rem;
}

.name {
    color: #f0f8ff;
    font-family: 'Syne', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    line-height: 0.75;
    margin-top: 0;
}

/*MOBILE RESPONSIVENESS*/
@media (max-width: 480px) {

    .edge {
        font-size: 0.55em;
        letter-spacing: 0.12em;
    }

    .edge-one {
    top: 18px;
    left: 16px;
    }

    .edge-two {
    top: 18px;
    right: 16px;
    }

    .edge-three {
    bottom: 18px;
    left: 16px;
    }

    .edge-four {
    bottom: 18px;
    right: 16px;
    }

    .container {
        padding: 1.2rem;
    }

    .container-text {
        font-size: 0.85em;
    }

}