File size: 1,993 Bytes
318fbae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f2bb1e3
 
 
0dd9198
 
7793f0d
e1254c8
 
 
04f5703
e1254c8
 
 
 
318fbae
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
* {
    box-sizing: border-box;
  }

  .container {
    width: 80%;
    margin: 0 auto;
  }

  .header {
    background-color: #333;
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-align: center;
  }

      
  .footer {
    background-color: #433d3d;
    color: rgb(226, 236, 236);
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    text-align: center;
  }

  .footer a {
    text-decoration: none;
    color: rgb(238, 243, 243);
  }

  .nav {
    display: flex;
    color: cyan;   
    background-color: #666;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .nav a {
    text-decoration: none;
    color: rgb(238, 243, 243);
    font-family: 'Open Sans', 'Helvetica Neue';
    font-size: 16px;
  }

  .nav a:hover {
    color: #999;
  }

  .nav_tech {
    display: flex;
    color: rgb(27, 184, 87);   
    background-color: #777;
    justify-content: space-between;
    text-transform: capitalize;
    align-items: center;
    padding: 10px;
  }

  .nav_tech a {
    text-decoration:none;  
    color: rgb(238, 243, 243);
    font-family: 'Open Sans', 'Helvetica Neue';
    font-size: 16px;
  }

  .nav_tech a:hover {
 
    color: #f11;
  }

  .main {
    display: flex;
    height: 500px;
    margin-top: 1px;
    margin-bottom: 1px;
  }




  .content {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: justify;
    overflow-y: scroll;
  }

  .content h2 {
    font-family: Arial, sans-serif;
    font-size: 22px;
    color: #333;
    text-align: center;
  }

  .content p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }

  .content img{
    float: left;
    margin-right: 55 px;
    padding-right: 20px;
  }

  .content li{
    list-style-type: circle;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }