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

* {
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font: 62.5% 'Mulish', sans-serif;
    background-color: #F3FBFB;
}


.card {
    background-color: white;
    width: 500px;
    display: flex;
    flex-direction: column;
    padding: 4rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 14px rgb(212 199 199 / 50%);
    position: relative;
}

img {
    border-radius: 50%;
    width: 55px;
    height: 50px;
}

.paragraph {
    font-size: 1rem;
    text-align: center;
}

.user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.pagination {
    display: flex;
}

.pag-item {
    border-radius: 50%;
    width: 5px;
    margin: 35px auto auto 7px;
    height: 5px;
    background-color: #CDCED6;
}

.active {
    width: 10px;
    background-color: black;
}

.username {
    font-size: 1em;
    font-weight: bold;
    margin: 10px;
}