/* General Styles */
body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Header Styles */
h1 {
  font-size: 2.5em;
  color: #925add;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.75em;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #925add;
  padding-bottom: 5px;
}

h3 {
  font-size: 1.5em;
  color: #555;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Paragraph Styles */
p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

/* Link Styles */
a {
  color: #925add;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* List Styles */
ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

/* Strong Element Styles */
strong {
  color: #333;
}

/* Code Block Styles */
pre {
  background-color: #f4f4f4;
  border-left: 4px solid #925add;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
  overflow: auto;
}

/* Footer Styles */
.footer {
  text-align: center;
  padding: 10px;
  background-color: #925add;
  color: #fff;
  margin-top: 20px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
.icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4caf50;
  border-radius: 10px;
  position: relative;
}
.icon::before {
  content: "";
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 10px;
  transform: rotate(135deg);
  position: absolute;
}
