Online Business Card Maker
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.card {
width: 300px;
border-radius: 15px;
overflow: hidden;
text-align: center;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
background-color: #fff;
position: relative;
}
.card-header {
background-color: #4CAF50;
padding: 10px;
}
.logo {
max-width: 100%;
height: 50px;
}
.card-body {
padding: 20px;
}
.profile-image {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
}
h1, h2, p {
margin: 5px 0;
}
.form {
display: flex;
flex-direction: column;
gap: 10px;
}
input, button {
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
cursor: pointer;
background-color: #4CAF50;
color: white;
}
button:hover {
background-color: #45a049;
}
Comments
Post a Comment