File size: 918 Bytes
7b06797
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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);
}