* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    background-image: url(./assets/cel-dimi_11zon.jpg); 
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed; /* Imagem fixa na posição original */
    background-size: auto 100vh; /* Ajusta a altura da imagem para ocupar a tela inteira */
}

@media only screen and (max-width: 768px) { /* Pode ajustar a largura conforme necessário */
    body {
        background-image: url(./assets/Sem-Título-1-Recuperado.jpg); /* Caminho para a imagem de celular */
        background-size: cover; /* Para garantir que a imagem ocupe toda a tela no celular */
    }
}


body * {
    font-family: 'inter', sans-serif;
    color: white;
}

#container1 {
    width: 360px;
    margin: 56px auto 0px;
    padding: 0 24px;
}

#profile {
    text-align: center;
    padding: 24px;
}

#profile img {
    width: 112px;
}

#profile p {
    font-weight: 500;
    line-height: 20px;
    padding: 10px;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #0888d6;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(5px);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

ul li a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

#social-links {
    justify-content: center;
    display: flex;
    padding: 24px 0;
    font-size: 24px;
}

#social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: background 0.2s;
    border-radius: 50%;
    
}

#social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
}

footer {
    padding: 0px 0;
    text-align: center;
    font-size: 15px;
}

p{
    font-size: 26px;
}