* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Inknut Antiqua', serif;
    background-image: linear-gradient(to bottom, #0D0D17, #181829);
    min-height: 100vh;
    color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 4.5em;
    padding: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.gradient-text {
    background: linear-gradient(to bottom, #A1A1FF, #EBEBFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #A1A1FF, #A1A1FF, #EBEBFF, #A1A1FF, #A1A1FF);
    background-size: 200% auto;
    animation: glowline 1s linear infinite;
}

@keyframes glowline {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0% 0;
    }
}

p {
    font-size: 1.6em;
    line-height: 1.6;
    color: #f4f4f4;
    margin-top: 20px;
}
