* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

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


:root {
    --color-dark: #232121;
    --color-light: #ECD8BD;
}


body {
    background: var(--color-light);
    font-family: 'Manrope', sans-serif;
}



.user {
    margin: auto;
    width: auto;
    height: auto;
    margin-top: 30px;
    text-align: center;
}

.user h1,
.user p {
    margin-top: 10px;
    font-weight: 300;
}

.user img {
    width: 300px;
    object-fit: cover;
    height: 300px;
    border-radius: 5px;
}

.socials {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 50px;
}

.socials a {
    width: 100%;
    background: var(--color-dark);
    margin-top: 20px;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 30px;
    border-radius: 20px;
    color: var(--color-light);
    transition: .3s;
    border: 1px solid;
    font-weight: 400;
}

.socials a h3 {
    margin-left: 20px;
}

.socials a svg {
    width: 100%;
    height: 100%;
    fill: var(--color-light);
    transition: .3s;
}

.socials a .icon {
    width: 35px;
    height: 35px;
}

.socials a:hover {
    color: var(--color-dark);
    background-color: var(--color-light);
}

.socials a:hover svg {
    fill: var(--color-dark);
}


@media (max-width:465px) {
    .socials a {
        border-radius: 5px;
    }
}