File size: 1,193 Bytes
f74338c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
64
65
66
67
68
69
70
71
72
73
/* styles.css */
/* Common styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
 }
 header {
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
 .logo img {
    height: 40px;
    margin-right: 10px;
 }
 nav ul {
    list-style-type: none;
    padding: 0;
 }
 nav ul li {
    display: inline-block;
    margin-right: 20px;
 }
 nav ul li a {
    text-decoration: none;
    color: #333;
 }
 main {
    padding: 20px;
 }
 footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
 }
 /* Page-specific styles */
 .hero {
    text-align: center;
    margin-top: 50px;
 }
 .hero textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    margin-top: 20px;
 }
 .hero button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
 }
 .compare {
    margin-top: 50px;
 }
 .compare h2 {
    text-align: center;
 }
 .comparison {
    display: flex;
    justify-content: space-between;
 }
 .original, .final {
    flex-basis: 45%;
 }
 .original h3, .final h3 {
    margin-bottom: 10px;
 }