@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit",sans-serif;
}

.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inputs{
    display: flex;
    flex-direction: column;
    gap: 12px;
    
}

input{
    font-size: 22px;
    margin-top: 5px;
    outline: none;
    border: none;
    background: transparent;
    /* padding-left: 120px; */
}
button{
    background-color: black;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    margin: 8px 0;
    padding: 5px 0;
}

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

img{
    height: 170px;
    width: 170px;
    border-radius: 50%;
    border: none;
    opacity: 0;
}

.name {
    font-size: 37px;
    font-weight: bold;
}
.followers , .following {
    font-size: large;
    font-weight: 400;
}
.footer{
    position: fixed;
    bottom: 10px;
    left: 550px;
    font-size: large;
}
.link{
    text-decoration: none;
    font-size: 16px;
    color: rgb(48, 47, 47);
}
.link:hover{
    color: rgb(0, 0, 0);
}