/* ==========================
   Reset
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}


/* ==========================
   Komplette Seite
========================== */


.site-header{
    background:
        radial-gradient(
            circle at top,
            #3b185c,
            #000000 70%
        );
    border-bottom:1px solid rgba(255,255,255,.4);
    padding:25px;
}


body{
    font-family:'Inter', Arial, Helvetica, sans-serif;
    color:#fff;
    background-color: #000000;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            #2a1240,
            #000000 60%
        );
    color:white;
    /* cursor: url('./assets/images/sword.svg'), auto; */
}


main{
    max-width:1200px;
    margin:auto;
    padding:40px;
}


h1{
    font-size:48px;
    font-weight:700;
    letter-spacing:4px;
    background:linear-gradient(
        90deg,
        #ffffff,
        #b56cff,
        #ffffff
    );
    background-size:200%;
    animation:titleGlow 5s linear infinite;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

h3{
    font-size: 1.5em;
    background:rgba(0,0,0,0.4);
    padding:8px 16px;
    border-radius:10px;
}

.button{
    padding:12px 30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.3);
    background:#7d00ff;
    color:white;
    cursor:pointer;
    font-size:18px;
}

/* ==========================
   Listen
========================== */

ul {
    list-style:none;
    padding:0;
    margin:20px auto;
}


li {
    margin:10px 0;
    padding:12px 20px;
    background:linear-gradient(
        90deg,
        #1a1a1a,
        #2b1038
    );
    border:1px solid rgba(255,255,255,.2);
    border-radius:12px;
    color:white;
    transition:.25s;
}


li:hover {
    transform:translateX(8px);
    background:linear-gradient(
        90deg,
        #389638,
        #123512
    );
    box-shadow:
        0 8px 20px rgba(125,0,255,.3);
}


/* Links in Listen */

li a {
    color:white;
    text-decoration:none;
    display:block;
}


li a:hover {
    color:white;
}