.cover {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../../assets/cover.jpg);
  background-size: cover;
  background-position: center;
}
.cover__btn {
  padding: 1em 2em;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: transparent;
  border: 1px solid transparent; /* Initially transparent */
  background-color: transparent; /* Initially transparent */
  animation: modalButtonFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .cover__btn:hover {
    cursor: pointer;
  }
}
.cover__btn-container {
  margin: 2em;
}
.cover__btn-container:active {
  transform: scale(1.1);
}
@media screen and (min-width: 1000px) {
  .cover__btn-container:hover {
    transform: scale(1.1);
  }
}
.cover__modal {
  transform: scale(1);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
  margin: auto;
  padding: 0.5em 1.5em;
  background-color: transparent;
  animation: modalFadeIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@media screen and (min-width: 400px) {
  .cover__modal {
    padding: 0.5em 3em;
  }
}
.cover__modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.cover__modal-svg rect {
  fill: none;
  stroke: #252422;
  stroke-opacity: 0.2;
  stroke-width: 2px;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: sketchIn 2s forwards;
}
.cover__heading, .cover__subheading {
  color: #ffffff;
  opacity: 0;
  position: relative;
  animation: modalTextFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes sketchIn {
  0% {
    stroke-dashoffset: 2000; /* Match stroke-dasharray value */
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes modalFadeIn {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(37, 36, 34, 0.5);
  }
}
@keyframes modalTextFadeIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes modalButtonFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    color: transparent;
    border: 1px solid transparent;
    background-color: transparent;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #252422;
    border: 1px solid #252422;
    background-color: #ffffff;
  }
}
.navbar {
  display: none;
  justify-content: space-between;
  height: 8vh;
  width: 100vw;
  position: fixed;
  background-color: #ffffff;
}
@media screen and (min-width: 1000px) {
  .navbar {
    display: flex;
  }
}
.navbar__logo {
  display: flex;
}
.navbar__links {
  display: none;
}
@media screen and (min-width: 1000px) {
  .navbar__links {
    display: flex;
  }
}
.navbar__link {
  display: flex;
  align-items: center;
  padding: 0 2em;
  text-decoration: none;
  color: black;
}
.navbar__link:active {
  background-color: #252422;
  color: #ffffff;
}
.navbar__link:hover {
  background-color: #252422;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
}

.navbar__mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 13vh;
  width: 100vw;
  position: fixed;
  background-color: #ffffff;
}
@media screen and (min-width: 1000px) {
  .navbar__mobile {
    display: none;
  }
}
.navbar__mobile__logo {
  display: flex;
  height: 7vh;
}
.navbar__mobile__links {
  display: flex;
  justify-content: space-around;
  height: 6vh;
  width: 100vw;
}
.navbar__mobile__link {
  display: flex;
  align-items: center;
  padding: 0 2em;
  text-decoration: none;
  color: black;
}
.navbar__mobile__link:active {
  transform: scale(1.1);
  font-weight: bold;
}

.content {
  display: flex;
  flex-direction: column;
}
.content__about, .content__skills, .content__projects, .content__contact {
  height: 100vh;
  width: 100%;
  display: flex;
}
.content__heading {
  text-align: center;
}
.content__para {
  padding-top: 5em;
}
.content__about {
  justify-content: space-around;
  flex-direction: column;
}
.content__about__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 3em;
}
.content__about__img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3em;
}
.content__about__img img {
  height: 300px;
}
@media screen and (min-width: 400px) {
  .content__about__img img {
    height: 400px;
  }
}
@media screen and (min-width: 1000px) {
  .content__about__img img {
    height: 500px;
  }
}
@media screen and (min-width: 1000px) {
  .content__about {
    flex-direction: row;
  }
}
.content__skills, .content__projects, .content__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content__skills__container, .content__projects__container, .content__contact__container {
  display: flex;
  justify-content: space-around;
}
.content__skills__icon, .content__projects__icon, .content__contact__icon {
  display: flex;
  padding: 0;
  margin: 0.5em;
}
.content__skills__icon:hover, .content__projects__icon:hover, .content__contact__icon:hover {
  background-color: #40403A;
  cursor: pointer;
}
.content__skills__img, .content__projects__img, .content__contact__img {
  height: 50px;
  width: 50px;
  border: 1px solid #252422;
  background-color: #ffffff;
  padding: 1em;
}
.content__skills__img:hover, .content__projects__img:hover, .content__contact__img:hover {
  filter: invert(100%);
}

footer {
  display: flex;
  text-align: center;
  color: rgba(37, 36, 34, 0.5);
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel__wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel__item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  text-align: center;
  box-sizing: border-box;
}
.carousel__item p {
  max-width: 75%;
}

.carousel__item img {
  width: 100%;
  display: block;
  border: 1px solid #252422;
}
@media screen and (min-width: 400px) {
  .carousel__item img {
    width: 20%;
  }
}
@media screen and (min-width: 1000px) {
  .carousel__item img {
    width: 20%;
  }
}

.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(37, 36, 34, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel__control--prev {
  left: 10px;
}

.carousel__control--next {
  right: 10px;
}

body {
  margin: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: black;
}

/*# sourceMappingURL=style.css.map */
