* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

#first-section {
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

#welcome {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.dynamic-txt {
  height: 10vh;
  overflow: hidden;
}
.dynamic-txt li {
  height: 100%;
  position: relative;
  list-style: none;
  animation: scroll 5s linear infinite;
  top: 0;
}

@keyframes scroll {
  0% {
    top: 0;
  }
  11% {
    top: -10vh;
  }
  33% {
    top: -10vh;
  }
  45% {
    top: -20vh;
  }
  67% {
    top: -20vh;
  }
  78% {
    top: -30vh;
  }
  100% {
    top: -30vh;
  }
}
.a-check {
  transition: 0.4s;
  text-align: center;
}
.a-check span {
  font-size: 35pt;
  animation: mover 1.5s infinite;
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  50% {
    transform: translateY(-18px);
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.subject {
  margin-left: 14px;
  margin-right: 14px;
  width: 32%;
}
.subject img {
  display: flex;
  margin: auto;
  max-width: 26%;
  height: auto;
}

#third-section {
  height: 70vh;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20%;
}

.slide-1 {
  background: url("../images/it.jpg");
}

.slide-2 {
  background: url("../images/instrument.png");
}

.slide-3 {
  background: url("../images/others.png");
}

.slide {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.owl-nav button {
  border: none !important;
  outline: none !important;
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
  background: none !important;
}

.owl-prev {
  left: 1%;
}
.owl-prev span {
  font-size: 50px;
}

.owl-next {
  right: 1%;
}
.owl-next span {
  font-size: 50px;
}

.framework {
  width: 90%;
}
.framework img {
  width: 7%;
}

.img-cv {
  border: 2px solid #000;
}

.cv-desc {
  border: 2px solid #000;
}

.font-monospace {
  font-family: monospace;
}

.font-georgia {
  font-family: Georgia, "Times New Roman", Times, serif;
}

.title-cv {
  border-bottom: 4px solid #ffc107;
  border-bottom-style: dashed;
}

#more {
  margin-bottom: 40px;
}

#skill-list, #project-list {
  transition: 0.5s;
  border: 2px solid #000;
  margin-top: 8px;
}

#download-cv a {
  background: black;
  color: white;
  transition: ease-out 0.3s;
  position: relative;
  box-shadow: inset 0 0 0 0 white;
}
#download-cv a:hover {
  box-shadow: inset 200px 0 0 0 white;
  color: #000;
}

.hide-name {
  display: none;
}

.playerX {
  color: #ffc107;
}

.playerO {
  color: #000;
}

#tictactoe {
  margin: 0 auto;
  display: grid;
  max-width: 479px;
  grid-template-columns: 33.33% 33.33% 33.33%;
  grid-template-rows: 33.33% 33.33% 33.33%;
}

.tille {
  border: 2px solid black;
  min-width: 160px;
  min-height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
  cursor: pointer;
}

#lapres-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

#table-submitted th, #table-submitted td {
  font-family: Georgia;
  width: 180px;
}

.table-num {
  max-width: 65px;
}

.for-border td, .for-border th {
  border: 1px solid #000;
}

#background-lapres {
  gap: 2px;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}
#background-lapres span {
  background: #181818;
  position: relative;
  display: block;
  width: calc(7.6vw - 2px);
  height: calc(7.6vw - 2px);
  z-index: 2;
  transition: 1.2s;
}
#background-lapres span:hover {
  background: #ffc107;
  transition: 0s;
}

#background-lapres::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(#000, #ffc107, #000);
  animation: fli 4.5s linear infinite;
}

@keyframes fli {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}/*# sourceMappingURL=style.css.map */