Profolio / style.css
RammPntxxx's picture
Create style.css
91ac794 verified
raw
history blame contribute delete
882 Bytes
body {
background-color: #111;
color: #fff;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.profile {
text-align: center;
margin-bottom: 20px;
}
.profile img {
width: 150px;
border-radius: 50%;
}
.content {
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
font-style: italic;
}
p {
font-size: 1.2rem;
margin-bottom: 10px;
}
.whatsapp-button {
display: inline-block;
background-color: #25D366;
color: #fff;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
margin-top: 20px;
font-style: italic;
}
.whatsapp-button img {
width: 20px;
margin-right: 10px;
}