*{
    margin: 0;
    padding: 0;
   font-family:'Trebuchet MS', sans-serif;
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background:rgb(37, 37, 37) url(../img/bg1.jpg)  center no-repeat ;;
    background-size: 100%;
    background-attachment: fixed;
    background-position: center;
    min-width: 600px;
    overflow: hidden;
}


.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 21em;
    height: 26em;
    border-radius: 14px;
    backdrop-filter:blur(6px);
    color: aliceblue;
    border:7px solid rgba(237, 245, 245, 0.051);
}

.card h3{
    font-size: 2em;
}
.card h5{
    font-size: 1em;
}
.card img{
    width: 8em;
    border-radius: 50%;
    border:10px solid rgba(237, 245, 245, 0.051); 
}
.links{
    display: flex;
    justify-content: space-around;
    width: 60%;
    margin-top: 1em;
}
.links a{
    text-decoration: none;
    font-size: 2em;
    color:aliceblue;
    transition: all .4s;
}
.links a:hover{
    text-decoration: none;
    font-size: 2.2em;
    color:rgb(20, 141, 247);
    transition: all .4s;
}
.btns a{
    text-decoration: none;
    display: inline-block;
    color:aliceblue;
    margin-top: 1em;
    padding:.2em .8em;
    border-radius: 25px;
    font-size: larger;
    border:3px solid aliceblue;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.356);
    transition: all .4s;
}
.btns a.follow{
    color:aliceblue;
    background: transparent;
    border:3px solid aliceblue;
}

.btns a:hover{
    color:rgb(1, 16, 29);
    border:3px solid rgb(1, 16, 29);
    font-weight: bold;
    transition: all .4s;
}