/* vendors */
@import '../vendors/font-awesome.min.css';

/* base */
@import '../base/main.css';
@import '../base/layout.css';

/* components */
@import '../components/clock.css';
@import '../components/progress-bar.css';
@import '../components/mouse.css';
@import '../components/socials.css';
@import '../components/form.css';

/* custom */

.back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: #ec1d61;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.4rem #0006;
  position: absolute;
  top: -2rem;
  right: -1rem;
}

.footer {
  padding-top: 0;
  color: #fffc;
}
.footer p a {
  color: #fff;
  text-decoration: none;
}
.footer p a:hover {
  text-decoration: underline;
}

.trio {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.trio > p {
  position: relative;
}
.trio > p::after {
  content: '';
  display: block;
  width: 0.1rem;
  height: 1em;
  margin-left: 0.7rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -0.55rem;
  transform: translateY(-50%);
}
.trio > p:last-child::after {
  display: none;
}

@media (max-width: 700px) {
  .trio {
    flex-direction: column;
  }
  .trio > p::after {
    display: none;
  }
}
