@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #ffffff;
    height: 100vh;
    background: url(./assets/bg3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#Container {
    margin: 70px auto 0px;
    width: 400px;
    padding: 0px 24px;
}

#profile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    max-width: 93px;
    margin-bottom: 10px;
}

#profile p{
    font-weight: 400;
}

#profile img {
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.user {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    /* Impede quebra de linha */
    overflow: hidden;
    /* Esconde o texto que ainda não "apareceu" */
    border-right: 2px solid white;
    /* Simula um cursor */
    width: 0;
    /* Começa sem largura */
    animation: user 1.5s steps(10) forwards, blink 0.7s infinite;
}


ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 24px 0px;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px;

    background: linear-gradient(70deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;

    transition: background 0.2s;
}

ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid #ffffff;
}

ul li a:visited {
    color: #fff;
    text-decoration: none;
}

ul li a:active {
    color: #fff;
}

ul li a:focus{
    color: #fff;
}

#social_links{
    display: flex;
    justify-content: center;
    padding: 8px 0;
    font-size: 16px;
    gap: 8px;
    border-radius: 50%;
    
}

#social_links a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-decoration: none;
    border-radius: 50%;
    color: #fff;
}

#social_links a:hover{
    background: rgba(255, 255, 255, 0.2);
}

#social_links p a:visited{
    color: #fff;
}

#social_links p a:active{
    color: #fff;
}

#social_links p a:focus {
    color: #fff;
}


footer {
    text-align: center;
    padding: 24px 0px;
}

footer a{
    color: #fff;
}

@media (max-width: 600px) {
    #Container {
        width: 100%;
        padding: 32px;
    }

    ul {
        flex-direction: column;
    }
}

@keyframes user {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}