h1 {
  font-weight: bold;
  text-align: center;
  color: #dddcd7;
  font-size: clamp(24px, 5vw, 50px);
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 10px;
  font-variant: small-caps;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 10px #000000;
  border-top-style: groove;
  border-bottom-style: groove;
  border-left-style: groove;
  border-right-style: groove;
  animation-name: slideDown;
  animation-duration: 3s;
  animation-delay: 1s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

body {
  background-color: rgb(161, 79, 43);
  color: #dddcd7;
  margin: 40px;
  line-height: 1.6;
  background-attachment: fixed;
  text-align: center;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  justify-content: center;
}

p {
  justify-content: center;
  text-align: center;
  max-width: 700px;
  line-height: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(16px, 2vw, 24px);
  color: #dddcd7;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 10px #000000;
  word-spacing: 5px;
  font-weight: bold;
  border-style: solid;
  border-width: 7px;
  border-radius: 10px;
  padding: 5px;
  margin: auto;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.contact-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.CV-Section {
  margin-top: 50px;
  text-align: center;
}

.cv-btn {
  background: linear-gradient(45deg, #000, #444);
  color: #dddcd7;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.2s ease-in-out,
    background 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* ---- this efect activate when the user touches on the button ---- */

/* Hover */
.contact-item img:hover {
  transform: scale(1.2);
}

/* Hover */
.cv-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #d4c9c9, #5a5959);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

/* Click */
.cv-btn:active {
  transform: scale(0.95);
}

