* {
  padding: 0%;
  margin: 0%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Capriola', sans-serif !important;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 15px;
}



section {
  height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
}


.nav-item {
  padding: 0px 5px;
}

.nav-item a {
  color: #111;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Capriola', sans-serif !important;
  text-transform: uppercase;
}



.hiro {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hiro::before {
  content: '';
  background-image: url(/static/img/cv.jpeg);
  background-position: center center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.hiro::after {
  content: '';
  background-color: rgba(159, 160, 156, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.passage {
  margin-top: 100px !important;
}

#skills {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  z-index: 2;
}

.card-effect {
  position: relative;
  overflow: hidden;
  background-color: white;
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.card-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.licence h4 {
  font-family: 'Kiwi Maru', serif !important;
}

.icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgb(85, 85, 76);
  font-size: 45px;
}


#works {
  position: relative;
  width: 100%;
  height: auto;
  background-image: linear-gradient(156deg, rgba(168, 202, 240, 1), rgba(230, 238, 250, 1) 95%, rgba(233, 240, 250, 1));
  z-index: 2;
}

.work h4 {
  font-family: 'Kiwi Maru', serif !important;
}





.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}


.modal {
  display: none;
  position: fixed;
  left: 50% !important;
  top: 50% !important;
  transform: translateX(-50%) translateY(-40%);

  width: 80% !important;
  height: 75% !important;

  background-color: white;
  border-radius: 10px;
  border: 1px solid black;
  padding: 20px;
  z-index: 1000;
}

.a-card {
  text-decoration: none;
  color: #111;
}

footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  z-index: 2;
}