body {
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: #fdfdfd;
  color: #222;
}

p, a {
  margin-bottom: 1em;
}

p b {
  font-size: 20px;
  color: #444;
}

/* Τίτλος */
p[align="center"] {
  font-size: 26px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

/* Εικόνες */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

/* Δεξιά ευθυγραμμισμένες εικόνες */
img[align="right"] {
  float: right;
  margin-left: 15px;
  margin-top: 5px;
}

/* Στυλ για παραγράφους με id */
p#1, p#2, p#3, p#4 {
  text-align: justify;
  margin-top: 20px;
  font-size: 17px;
}

/* Βίντεο */
video {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
}

/* Σύνδεσμοι */
a {
  color: #0055aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive εικόνες και βίντεο */
@media (max-width: 768px) {
  img[align="right"] {
    float: none;
    display: block;
    margin: 10px auto;
  }

  video {
    width: 100%;
  }
  nav a:hover{ text-decoration: underline;
  }
}