@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root{
    --bgColor:#0f172a;
    --cardColor:rgba(255,255,255,0.08);
    --cardHover:rgba(255,255,255,0.15);
    --textColor:#ffffff;
    --subText:#cbd5e1;
    --accent:#22c55e;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(
        180deg,
        #0f172a 0%,
        #111827 50%,
        #020617 100%
    );
    color:var(--textColor);
    min-height:100vh;
    text-align:center;
    padding-bottom:40px;
}

.cover{
    width:100%;
    height:180px;
    background:linear-gradient(
        135deg,
        #0b132b,
        #1c2541,
        #3a506b
    );
}

#userPhoto{
    width:120px;
    height:120px;
    border-radius:5%;
    object-fit:cover;
    margin-top:-60px;
    border:3px solid #fff;
    box-shadow:0 8px 25px rgba(0,0,0,.3);
}

h1{
    margin-top:15px;
    font-size:1.8rem;
    font-weight:600;
}

.motto{
    color:var(--subText);
    margin-top:8px;
    margin-bottom:25px;
    font-size:.95rem;
}

#links{
    width:90%;
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.link{
    display:block;
    text-decoration:none;
    color:var(--textColor);
    background:var(--cardColor);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    padding:15px 20px;
    border-radius:16px;
    transition:.25s ease;
    font-weight:500;
}

.link:hover{
    transform:translateY(-3px);
    background:var(--cardHover);
    border-color:var(--accent);
    box-shadow:0 8px 20px rgba(34,197,94,.25);
}

.atrib{
    display:block;
    margin-top:35px;
    color:#94a3b8;
    font-size:.85rem;
    text-decoration:none;
}

@media(max-width:480px){

    .cover{
        height:150px;
    }

    #userPhoto{
        width:100px;
        height:100px;
        margin-top:-50px;
    }

    h1{
        font-size:1.5rem;
    }

    .link{
        padding:14px;
        font-size:.95rem;
    }
}
