@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
* {
  font-family: "Manrope", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
}

.text-justify {
  text-align: justify;
  text-indent: 2rem;
}

.text-black {
  color: #212121 !important;
}

.text-white {
  color: #F1EFEF !important;
}

.bg-custom {
  background-color: #F1EFEF !important;
}

.title {
  letter-spacing: 0.5rem;
  text-align: center;
  font-weight: bold;
}
.title.right {
  rotate: -90deg;
}
.title.left {
  rotate: 90deg;
}

html {
  height: 100%;
}
html body {
  position: relative;
  height: 100%;
  background-color: #212121 !important;
}
html body #hero {
  min-height: 100vh;
}
html body #hero .row {
  z-index: 10;
}
html body #hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: blur(1.7px);
  z-index: -1;
}
html body .skills {
  background-color: #F1EFEF;
  min-height: 250px;
}
html body .skills .skills-container {
  width: 100%;
  overflow-x: auto;
}
html body .skills img {
  width: 200px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
html body .skills .invert {
  filter: brightness(0) invert(2);
}
html body .projects {
  height: 100vh;
  min-height: 500px;
}
html body .contact {
  background-color: #F1EFEF;
  min-height: 100vh;
}
html body .contact form {
  max-width: 500px;
}
html body .contact form label {
  font-weight: bold;
}
html body .contact form input {
  color: #212121 !important;
  width: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: 0.5px solid #212121;
  border-radius: 50rem;
}
html body .contact form textarea {
  color: #212121 !important;
  width: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: 0.5px solid #212121;
  border-radius: 0.5rem;
}
html body .contact form button {
  background: none;
  border: 1px solid #212121;
  background-color: #212121;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  transition: 0.5s ease;
}
html body .contact form button:hover {
  background: none;
  color: black !important;
  transition: 0.5s ease;
}/*# sourceMappingURL=stylesheet.css.map */