File tree

1 file changed

+20
-13
lines changed

1 file changed

+20
-13
lines changed
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@
99
font-family: Arial, sans-serif;
1010
line-height: 1.6;
1111
margin: 0;
12-
padding: 20px;
12+
padding: 0;
1313
background-color: #001f3f;
1414
color: #cdd3de;
1515
}
16+
.container {
17+
width: 100%;
18+
max-width: 1200px;
19+
margin: 0 auto;
20+
padding: 20px;
21+
box-sizing: border-box;
22+
}
1623
h1, h2 {
1724
color: #00c6ff;
1825
}
@@ -23,23 +30,23 @@
2330
a:hover {
2431
text-decoration: underline;
2532
}
26-
.container {
27-
max-width: 800px;
28-
margin: 0 auto;
29-
text-align: center;
30-
}
31-
.graphic {
32-
margin: 20px 0;
33+
ul {
34+
text-align: left;
35+
padding-left: 20px;
3336
}
3437
.graphic img {
3538
width: 100%;
36-
max-width: 400px;
39+
max-width: 800px;
3740
border-radius: 10px;
3841
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
3942
}
40-
ul {
41-
text-align: left;
42-
padding-left: 20px;
43+
@media (max-width: 768px) {
44+
h1, h2 {
45+
font-size: 1.5em;
46+
}
47+
.graphic img {
48+
max-width: 100%;
49+
}
4350
}
4451
</style>
4552
</head>
@@ -73,7 +80,7 @@ <h2>Relevance to Cybersecurity</h2>
7380
</div>
7481

7582
<h2>How to Run the Code</h2>
76-
<p>To compile and run the code locally, use the following commands:</p>
83+
<p>Clone the repository and compile the code using a C++ compiler:</p>
7784
<pre>
7885
g++ CS115_IP5_LuisCamachoJr.cpp -o output
7986
./output

0 commit comments

Comments
 (0)