/* Start Landing */
.landing {
  position: relative;
  background-color: transparent;
  color: white;
}

.landing .container {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
  padding-top: 50px;
}
.landing .text {
  text-align: center;
  overflow: hidden;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .landing .text {
    text-align: center;
  }
}
.landing .text h1 {
  font-size: 2.5rem;
  margin: 0 auto 30px;
}
/* media */
@media (max-width: 767px) {
  .landing .text h1 {
    font-size: 2rem;
  }
}
@media (max-width: 450px) {
  .landing .text h1 {
    font-size: 1.5rem;
  }
}
/* media */
.landing .text h1 > span {
  color: var(--main-color);
}

.landing .text .type-writer {
  color: var(--main-color);
}

/* media */
@media (max-width: 360px) {
  .landing .text .type-writer .Typewriter__wrapper {
    font-size: 1.2rem;
  }
}
/* media */

.landing .text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 5px 0 0;
  color: #666;
  width: 100%;
  max-width: 700px;
  text-transform: capitalize;
  text-align: center;
  text-align-last: center; /* center the last line */
  hyphens: auto;
  padding: 1rem;
}
@media (max-width: 991px) {
  .landing .text p {
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .landing .text p {
    font-size: 1rem;
  }
}

.resume-holder {
  width: 200px;
  height: 100px;
  margin: 20px auto;
  box-shadow: 12px 10px 16px #0000008c;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resume-holder::before {
  content: "";
  background-image: conic-gradient(var(--main-color) 20deg, transparent 120deg);
  width: 210%;
  height: 210%;
  position: absolute;
  animation-name: rotate;
  animation-duration: 2600ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.resume-holder::after {
  content: "Contact";
  color: var(--main-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  width: 190px;
  height: 90px;
  background-color: #101010;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 5px;
  box-shadow: inset 20px 20px 20px #0000008c;
  transition: var(--main-transition);
}
.resume-holder:hover.resume-holder::after {
  text-shadow: 0 0 10px var(--main-color);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.landing .image {
  margin-left: 100px;
  user-select: none;
}
.landing .image:hover img {
  box-shadow: 6px 6px 30px var(--main-color);
}

.landing .image img {
  width: 380px;
  position: relative;
  border: 10px solid var(--main-color);
  border-radius: 16px;
  box-shadow: 0 8px 15px var(--background-color);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  .landing .image {
    display: none;
  }
}

/* End Landing */
