body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  text-align: center;
}

/* HEADER */
.header {
  background-color: #2c3e50;
  color: white;
  padding: 50px 20px;
}

.header p {
  font-size: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: olive;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
}

.btn:hover {
  background-color: #1f618d;
}

/* SECTIONS */
.skills-section,
.contact {
  background-color: white;
  margin: 40px auto;
  padding: 30px;
  max-width: 1000px;
  border-radius: 10px;
}

/* FLEXBOX */
.skills {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.box {
  background-color: #3498db;
  color: white;
  padding: 20px;
  width: 120px;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .skills {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 80%;
  }
}
.profil-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid white;
}
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3498db;
}
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.skills-section {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}