File size: 1,952 Bytes
80949ae 6975069 80949ae 6975069 80949ae 6975069 80949ae 6975069 80949ae 6975069 80949ae 6975069 |
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 |
/* Reset some default styling */
body, h1, h2, p {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #FFFFFF;
}
.header-title {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
text-align: center;
color: #FF4500; /* Original Orange-Red Color */
margin: 0;
padding: 20px 0;
}
.header-subtitle {
font-size: 16px;
text-align: center;
color: #FF4500;
margin: 10px 0;
}
.highlight-orange {
color: #EE82EE; /* Original Orange-Red Color */
}
.highlight-violate {
color: #EE82EE; /* Violate Color */
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #FF4500; /* Original Orange-Red Color */
padding: 10px 20px;
}
nav ul {
list-style-type: none;
display: flex;
}
nav li {
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #FFFFFF;
}
section {
background-color: #1E1E1E;
border: 2px solid #FF4500;
border-radius: 10px;
padding: 20px;
margin: 20px;
}
section:hover {
border-color: #EE82EE;
}
h2 {
color: #FF4500;
margin-bottom: 10px;
}
.icon {
margin-right: 10px;
}
.footer {
text-align: center;
margin-top: 40px;
}
.buttons {
display: flex;
justify-content: center;
align-items: center;
margin: 20px auto;
}
.button {
background-color: #FF4500;
color: #121212;
padding: 8px 16px;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s;
margin-right: 10px;
}
.button:last-child {
margin-right: 0;
}
.button:hover {
background-color: #EE82EE;
}
/* Media Queries for Responsive Design */
@media (max-width: 768px) {
header {
padding: 10px;
}
nav ul {
flex-direction: row;
}
nav li {
margin-right: 10px;
}
.buttons {
flex-direction: column;
align-items: center;
margin: 10px auto;
}
.button {
margin-right: 0;
margin-bottom: 10px;
}
}
|