35 lines
559 B
CSS
35 lines
559 B
CSS
#devs {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.profilsimg {
|
|
width: 15vw;
|
|
height: auto;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.contactprofile{
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
border: solid purple 2px;
|
|
border-radius: 15px;
|
|
padding: 1px;
|
|
}
|
|
.contactprofile a {
|
|
display: flex;
|
|
width: 500px;
|
|
/*justify-content: space-between;*/
|
|
flex-direction: row;
|
|
}
|
|
|
|
|
|
.contactprofile a p{
|
|
align-self: center;
|
|
margin-left: 2rem;
|
|
/* justify-content: center;*/
|
|
}
|
|
|