/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
}

header {
  background-color: #333;
  padding: 10px;
}

header h1 {
  color: #fff;
  text-align: center;
}

section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 24px;
  color: #555;
  margin-bottom: 20px;
}

p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  margin-bottom: 10px;
}

a {
  color: #333;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.3s ease;
}

a:hover {
  color: #555;
}

/* Unique and beautiful styles */
#about-me {
  background-color: #f9f9f9;
}

#about-me p:first-of-type {
  margin-top: 20px;
}

#project {
  background-color: #f5f5f5;
}

#technologies {
  background-color: #f9f9f9;
}

#challenges {
  background-color: #f5f5f5;
}

#risks {
  background-color: #f9f9f9;
}

#infrastructure {
  background-color: #f5f5f5;
}

#existing-solutions {
  background-color: #f9f9f9;
}

#contact-me {
  background-color: #f5f5f5;
  text-align: center;
}

#contact-me ul {
  margin-top: 20px;
}
