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

.main{
    width: 100%;
    height: 100vh;
    background: purple;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card{
width: 400px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.card img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.message{
    margin-top: 20px;
    padding: 10px 16px;
    border: none;
    background: blueviolet;
    color: white;
    text-transform: uppercase;
}

.following{
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px 16px;
    border-color: purple;
    color: purple;
    text-transform: uppercase;
}

.h5{
     padding: 10px;
     margin-bottom: 20px;
}

.button1{
    margin: 2px;
    padding: 3px 3px;
    border-color: purple;
    color: purple;
    text-transform: uppercase;
}

