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

html,
body {
    height: 100%;
}

body {
    font-family: Manrope, sans-serif;
    background: radial-gradient(circle at 20% 0%, #343434 0%, #1b1b1b 45%, #090909 100%);
    color: #ece6dc;
    overflow: hidden;
}

/************************************************/
body:before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left,
    rgba(255, 255, 255, .06),
    transparent 45%),
    radial-gradient(circle at bottom,
            rgba(255, 255, 255, .03),
            transparent 60%);
    pointer-events: none;
}

/************************************************/
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

/************************************************/
.logo {
    font-family: "Allura", cursive;
    font-size: clamp(70px, 11vw, 210px);
    line-height: .9;
    font-weight: 400;
    color: #f5ebdc;
    text-shadow: 0 0 20px rgba(255, 245, 220, .08),
    0 0 50px rgba(255, 220, 170, .04);
    transition: .4s;
}

.logo:hover {
    transform: scale(1.015);
    text-shadow: 0 0 30px rgba(255, 255, 255, .18),
    0 0 70px rgba(255, 220, 180, .08);
}

/************************************************/
.subtitle {
    margin-top: 30px;
    color: #a69784;
    font-size: 14px;
    letter-spacing: 8px;
}

/************************************************/
.line {
    width: 120px;
    height: 1px;
    background: #726350;
    margin: 35px auto;
}

/************************************************/
.links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.links a {
    color: #cabba8;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.links a:hover {
    color: white;
    transform: translateY(-2px);
}

/************************************************/
.since {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 12px;
    color: #9d907e;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/************************************************/
.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
    text-align: center;
    color: #746857;
    font-size: 13px;
    letter-spacing: 3px;
}

/************************************************/
@media (max-width: 768px) {
    .links {
        flex-direction: column;
        gap: 18px;
    }

    .since {
        right: 25px;
        top: 25px;
        font-size: 10px;
    }

    .subtitle {
        letter-spacing: 5px;
    }
}
