* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Header */

header {
  background-image: url("../images/statistics.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 2.5rem;
}

header p {
  margin: 10px 0;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #00aaff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Skills */

#skills ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

#skills li {
  background: white;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 5px;
}

li{
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#skills li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#skills li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Projects */

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.project-card img {
  width: 100%;
  border-radius: 5px;
}

.project-card a {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #00aaff;
}

/* Contact */

#contact {
  text-align: center;
}

/* Footer */

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
/*links*/
#view {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

a {
  transition: all 0.3s ease;
}

a:hover {
  color: #043852;
}


