/* ===== Global Page Style ===== */
body {
  font-family: Arial, sans-serif;
  background: #f4f8fb;
  color: #222;
  margin: 0;
  padding: 30px;
  line-height: 1.6;
}

/* ===== Website Name ===== */
body::before {
  content: "outiltexte.neocities.org";
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* ===== Headings ===== */
h1 {
  color: #0d47a1;
  font-size: 32px;
  background: #e3f2fd;
  padding: 15px;
  border-left: 6px solid #2196f3;
  border-radius: 8px;
}

h2 {
  color: #1565c0;
  margin-top: 35px;
  border-bottom: 2px solid #90caf9;
  padding-bottom: 8px;
}

/* ===== Paragraph ===== */
p {
  font-size: 18px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ===== Links ===== */
a {
  color: #1976d2;
  text-decoration: underline;
  font-weight: normal;
}

a:hover {
  color: #0d47a1;
  text-decoration: underline;
}

/* ===== Interest List Box ===== */
ul {
  background: white;
  padding: 20px;
  border-radius: 8px;
  list-style: square;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ===== Remove Dot From Free Tool ===== */
li {
  margin-bottom: 10px;
  font-size: 17px;
  list-style: none;
}

/* ===== Make Free Tool Normal Hyperlink ===== */
li a {
  background: none;
  color: #1976d2;
  padding: 0;
  border-radius: 0;
  display: inline;
  font-weight: normal;
  text-decoration: underline;
}

li a:hover {
  background: none;
  color: #0d47a1;
  text-decoration: underline;
}

/* ===== Image ===== */
img {
  margin-top: 25px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }
}