:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7)
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

a {
    color: #FFF;
    text-decoration: none
}

a:hover {
    text-shadow: 0pt 0pt .3em white, 0pt 0pt .3em #fff
}

.no-hover {
    color: var(--text-secondary) !important
}

.no-hover:hover {
    text-shadow: none;
    color: var(--text-secondary) !important
}

.main {
    text-align: center;
    padding: 2rem
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600
}

.email-container {
    margin-bottom: 2rem
}

.email {
    color: var(--text-secondary);
    font-size: .9rem
}

.separator {
    color: var(--text-secondary);
    margin: 0 .5rem;
    font-size: .9rem
}

.info {
    margin-bottom: 2rem
}

.info p {
    margin: .5rem 0;
    color: var(--text-secondary);
    font-size: .9rem
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem
}

.links a {
    opacity: .7;
    transition: opacity 0.2s ease
}

.links a:hover {
    opacity: 1
}

.links img {
    width: 24px;
    height: 24px
}

html,
body {
    width: 100%;
    height: 100%
}

*,
*:before,
*:after {
    box-sizing: border-box
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: radial-gradient(650px circle at var(--x, 0) var(--y, 0), rgb(255 255 255 / .3) 0%, rgb(255 255 255 / .25) 3%, rgb(255 255 255 / .1) 7%, #fff0 10%);
    transition: background 0.1s ease;
    z-index: 0
}