File size: 2,373 Bytes
6da1f7e
d302e50
 
 
 
 
 
37dec25
d302e50
 
d26d78d
 
d302e50
37dec25
d302e50
 
 
 
 
063176f
 
d302e50
 
 
 
d26d78d
 
d302e50
 
 
37dec25
 
 
 
d302e50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d26d78d
 
d302e50
 
d26d78d
 
d302e50
 
 
d26d78d
 
d302e50
 
 
 
 
 
4f6b6be
 
d302e50
 
d26d78d
 
d302e50
 
 
 
49c5921
 
d302e50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6da1f7e
d302e50
 
 
 
 
 
 
4f6b6be
 
37dec25
6da1f7e
d302e50
 
 
4f6b6be
d302e50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e2724f3
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: #006400; /* Dark Green */
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.navbar .greeting {
    color: white;
    font-size: 18px;
}

/* Headline Section */
.headline {
    background-color: #006400; /* Dark Green */
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.headline h1 {
    font-size: 36px;
}

.headline p {
    font-size: 18px;
}

/* Main Content Section */
.main-content {
    background-color: white;
    padding: 20px 50px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.converter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, select, button {
    margin: 10px;
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#result {
    margin-top: 20px;
    font-size: 18px;
}

/* Steps Section */
.steps {
    background-color: #006400; /* Dark Green */
    padding: 30px;
    color: white;
    text-align: center;
}

.steps h2 {
    font-size: 30px;
}

.step-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.step {
    background-color: #e0e0e0; /* Light Gray */
    padding: 20px;
    width: 25%;
    border-radius: 8px;
}

.step h3 {
    font-weight: bold;
}

.step p {
    font-size: 16px;
}

/* Footer Section */
.footer {
    background-color: #808080; /* Gray */
    color: white;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .headline h1 {
        font-size: 28px;
    }

    .main-content {
        padding: 20px;
    }

    .converter {
        width: 100%;
    }

    .step-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 80%;
        margin-bottom: 20px;
    }

    .footer {
        padding: 15px;
    }
}