|
body { |
|
font-family: Arial, sans-serif; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
height: 100vh; |
|
background-color: #f0f0f0; |
|
margin: 0; |
|
} |
|
|
|
.card { |
|
background-color: #fff; |
|
border-radius: 10px; |
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); |
|
overflow: hidden; |
|
width: 350px; |
|
text-align: center; |
|
margin: 20px; |
|
} |
|
|
|
.logo-container { |
|
background-color: #f7f7f7; |
|
padding: 20px; |
|
} |
|
|
|
.logo { |
|
width: 100px; |
|
height: 100px; |
|
border-radius: 50%; |
|
object-fit: cover; |
|
} |
|
|
|
.content { |
|
padding: 20px; |
|
} |
|
|
|
.company-name { |
|
margin: 0; |
|
font-size: 1.5em; |
|
color: #333; |
|
} |
|
|
|
.description { |
|
font-size: 1em; |
|
color: #666; |
|
margin: 10px 0; |
|
} |
|
|
|
.social-media { |
|
margin-top: 15px; |
|
} |
|
|
|
.social-icon { |
|
width: 30px; |
|
height: 30px; |
|
margin: 0 5px; |
|
transition: transform 0.2s; |
|
} |
|
|
|
.social-icon:hover { |
|
transform: scale(1.2); |
|
} |
|
|