@import url(https://fonts.google.com/specimen/Inter);
html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222222;
    font-family: "Inter";
}

p {
    font-size: 14px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px; /* Define o máximo de largura para evitar que o perfil fique muito grande em telas maiores */
    height: auto;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.profile-location {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: hsl(75, 94%, 57%); /* Altera a cor do texto da localização */
}

.profile-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.profile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-link {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    margin: 5px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.profile-link:hover {
    background-color: #555;
}

@media (max-width: 600px) {
    /* Estilos específicos para dispositivos com largura máxima de 600 pixels (por exemplo, celulares) */
    .profile {
        width: 100%; /* Ajusta a largura para ocupar toda a largura disponível */
    }

    .profile-image {
        width: 100px; /* Reduz o tamanho da imagem para caber melhor em telas menores */
        height: 100px;
        margin-bottom: 10px; /* Reduz o espaçamento inferior */
    }

    .profile-name {
        font-size: 1.5rem; /* Reduz o tamanho da fonte do nome */
    }

    .profile-title {
        font-size: 1rem; /* Reduz o tamanho da fonte do título */
        margin-bottom: 20px; /* Reduz o espaçamento inferior */
    }

    .profile-links {
        width: 80%; /* Reduz a largura da lista de links */
    }
}
.profile-link:hover {
    background-color: hsl(75, 94%, 57%);
    color: #000000;
}
