40 lines
668 B
CSS
40 lines
668 B
CSS
h1{
|
|
text-align: center;
|
|
}
|
|
|
|
#devs{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.contactprofile a{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.profilsimg{
|
|
padding-left: auto;
|
|
padding-right: auto;
|
|
height : 10rem;
|
|
width: auto;
|
|
border-radius: 1rem;
|
|
border: solid 2px black;
|
|
}
|
|
|
|
#review{
|
|
margin-top: 2rem;
|
|
text-align: center;
|
|
font-size: 2rem;
|
|
background-color: rgba(228, 228, 228, 0.767);
|
|
border: double 2px rgb(252, 128, 235);
|
|
}
|
|
|
|
@media screen and (max-width:1000px){
|
|
#devs{
|
|
flex-direction: column;
|
|
}
|
|
} |