*,
*::before,
*::after{
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    margin:0;
    background:#f1f1f2;
    color:#303030;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.5;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}


main {
    width: 100%;
    max-width: 420px;

    padding: 40px 24px 60px;
    margin: 0 auto;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}




/* Typography */

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 10px 0 0;
}

p {
    color: #666;
    margin-bottom: 30px;
}

a{
    -webkit-tap-highlight-color:transparent;
}

/* Avatar */

.avatar {
    width: 160px;
    height: 160px;
    
    object-fit: cover;
    margin-bottom: 0;
}

/* Navigation */

nav {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


/* Main Website Button */

nav a.primary {
    display: block;
    width: 100%;

    padding: 13px 20px;
    text-align: center;

    background: #303030;
    color: #f1f1f2;

    border:1px solid #303030;
    border-radius: 999px;

    font-weight: 500;
    letter-spacing: .05em;
    text-decoration: none;

    box-shadow:
        0 8px 24px rgba(0,0,0,.10),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition: .25s ease;
}

nav a.primary:hover {
    background: #3a3a3a;
    border-color: #3a3a3a;

    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(0,0,0,.14),
        inset 0 1px 0 rgba(255,255,255,.08);
}

nav a.primary:active {
    transform: translateY(0);

    box-shadow:
        0 4px 12px rgba(0,0,0,.10),
        inset 0 2px 4px rgba(0,0,0,.08);
}

/* Social Links */

.social-links {
    margin-top: 6px;
    text-align: center;
    color: #666;
    font-size: 1rem;
}

.social-links a {
    position: relative;
    color: #666;
    letter-spacing: .05em;
    text-decoration: none;
    transition: color .25s ease;
}

.social-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width .25s ease;
}

.social-links a:hover {
    color: #303030;
}

.social-links a:hover::after {
    width: 100%;
}

.social-links span {
    color: #bbb;
    margin: 0 12px;
}


.qr-area {
    display: none;
}

@media (hover: hover) and (pointer: fine) {

    .qr-area {
        display: block;

        position: fixed;
        left: 4vw;
        bottom: 4vw;

        margin-top: 0;
        text-align: center;

        z-index: 100;
    }

    .qr-card {
        display: inline-block;
        padding: 14px;

        background: rgba(255,255,255,.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-radius: 16px;

        box-shadow: 0 8px 30px rgba(0,0,0,.06);
    }

    .qr-card img {
        display: block;
        width: 90px;
        height: 90px;
    }
}

body::before{
    content:"";

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:40vh;

    background-image:url("../images/blur.webp");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center top;

    opacity:.10;

    mask-image:linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.8) 50%,
        rgba(0,0,0,0) 100%
    );

    -webkit-mask-image:linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.8) 50%,
        rgba(0,0,0,0) 100%
    );

    pointer-events:none;
    z-index:-2;
}

@media (max-width:768px){

    body::before{
        height:25vh;
        background-position:center top;
    }

}

body::after{
    content:"";

    position:fixed;
    inset:0;

    background:#f1f1f2;

    opacity:.50;

    pointer-events:none;

    z-index:-1;
}

.location {
    margin: 0;
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.tags {
    margin: 10px 0 25px;
    color: #8a8a8a;
    font-size: 0.95rem;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after{
        animation:none !important;
        transition:none !important;
    }

}


.shareme-message{
    display:none;
    margin:0px auto 30px;
    padding:12px 16px;
    max-width:360px;
    border-radius:12px;
    background:rgba(255,255,255,.45);
border:1px solid rgba(255,255,255,.4);
backdrop-filter:blur(8px);
-webkit-backdrop-filter:blur(8px);
    color:#666;
    font-size:13px;
    line-height:1.6;
    text-align:center;
}


