/* Color Theme */
body {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7647058824), #000000);
  color: white;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #0d0d0d;
}

body::-webkit-scrollbar-thumb {
  background-color: #f26444;
  border-radius: 20px;
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
}
main {
  padding-top: 4rem;
}

section {
  margin: 4rem 0;
}

section .row .col-12 p {
  text-align: justify !important;
}

.display-2 {
  color: #fe7144;
  font-weight: 400;
}

@media (max-width: 262px) {
  .display-2 {
    width: min-content;
  }
}
a {
  text-decoration: none;
  color: #0d0d0d;
}
a:hover {
  color: yellow;
  text-decoration: underline;
}

#devs {
  background-color: #f2ddd0;
  overflow: hidden;
}
#devs #dev {
  width: fit-content;
}
#devs a:hover {
  color: rgb(110, 90, 90);
}

[data-animation] {
  opacity: 0;
  transition: 0.7s;
}

[data-animation=fade-up] {
  transform: translate3d(0, 50px, 0);
}

[data-animation=flip] {
  transform: rotateY(180deg);
}

[data-animation].animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 991px) {
  #border {
    border-left: solid white 0;
    transition: border-left 1s;
  }
  .borda {
    border-left: solid #f26444 6px !important;
  }
}
.foto {
  max-width: 10vh;
  max-height: 10vh;
  border-radius: 20px;
  border: #0d0d0d 1.6px solid;
}
@media (max-height : 668px) {
  .foto {
    width: 7vh;
    height: 7vh;
 
  }
}
@media (max-height : 776px) {
  .foto {
    width: 8vh;
    height: 8vh;
 
  }
}

.carousel-item img {
  aspect-ratio: 16/9;
  object-fit: fill;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;
  border-radius: 90%;
}

.list-group-item {
  background-color: rgba(255, 255, 255, 0);
  color: white;
}
.list-group-item a {
  color: white;
}
.list-group-item a img:hover {
  transform: scale(1.3);
}

.list-group-item.active {
  background-color: #f26444;
  border: #f26444;
}

.video-container {
  height: 450px;
  width: 100%;
  background-color: rgba(242, 100, 68, 0.1411764706);
  display: flex;
  align-items: center;
}
.video-container video {
  width: 100%;
  position: relative;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .video-container {
    height: 250px;
  }
}
.rocket {
  transition: bottom 1s ease-in-out, transform 0.2s ease-in-out, opacity 0.5s ease-in-out;
  animation: rocket-anim 10s infinite;
  position: fixed;
  bottom: 40px;
  right: 20px;
  cursor: pointer;
  opacity: 0;
  z-index: 9999;
}
.rocket.show {
  bottom: 20px;
  opacity: 1;
}
.rocket.move {
  bottom: 400px;
  transform: rotate(0deg);
}

@keyframes rocket-anim {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(0);
  }
  50% {
    transform: translateX(0) translateY(-10px);
  }
  75% {
    transform: translateX(10px) translateY(0);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
footer {
  background-color: #f2ddd0;
  overflow: hidden;
}

.navbar {
  background-color: rgba(13, 13, 13, 0.8705882353);
  transition: all 0.5s ease;
}