body {
  background-color: #161d1f;
  font-family: "Anonymous Pro", monospace;
  color: white;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
}

.code-background {
  position: fixed;
  z-index: -99999;
  opacity: 0.05;
  width: 100vw;
}

.home-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 95dvh;
  opacity: 0;
}
.home-page.visible {
  animation: fadeIn 3s ease-in-out forwards;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

footer {
  padding-top: 10px;
  padding-bottom: 3px;
  background-color: rgba(22, 29, 31, 0.47);
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer div {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  flex-wrap: wrap;
}

.privacy {
  text-align: left;
}

.company-name {
  font-size: smaller;
}
@media (min-width: 768px) {
  .company-name {
    font-size: inherit;
  }
}

a, a:visited, a:hover {
  color: #f25f5c;
  text-decoration: none;
}

h2 {
  color: #eff5d6;
}

main {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.roles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  line-height: 0.8rem;
}
@media (min-width: 768px) {
  .roles {
    flex-direction: row;
    line-height: unset;
  }
}

.linebreak {
  display: block;
}
@media (min-width: 768px) {
  .linebreak {
    display: none;
  }
}

.pipe > span {
  display: none;
}
@media (min-width: 768px) {
  .pipe > span {
    display: inline;
  }
}

.logo {
  width: 100%;
}
.logo h1 {
  font-size: 1.1rem;
}
.logo h2, .logo h3 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .logo {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .logo {
    width: 40%;
  }
  .logo h1 {
    font-size: 1.05rem;
  }
  .logo h2, .logo h3 {
    font-size: 1rem;
  }
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  background-color: #161d1f; /* black background */
  color: #ffffff; /* white text */
  border: 2px solid #00a67e; /* Trustpilot green border */
  border-radius: 4px;
  padding: 8px 12px;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  transition: 0.5s;
}

.tp-badge:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #01cc99;
  transform: scale(1.02);
}

.tp-badge:focus, .tp-badge:active {
  transform: scale(1.02);
}

.tp-widget-logo {
  width: 80px;
  height: auto;
  margin-left: 8px;
}

.tp-widget-logo svg {
  vertical-align: sub;
  fill: #f0f4d3;
}

.tp-badge, .tp-badge:visited, .tp-badge:hover {
  color: #f0f4d3 !important;
  text-decoration: none;
}

.splash-logo-container {
  height: 100vh;
  background: #161d1f;
  position: absolute;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 2s;
}
.splash-logo-container .logo-splash {
  animation: fadeInPulse 2s ease-in-out forwards;
  width: 70%;
}
@media (min-width: 768px) {
  .splash-logo-container .logo-splash {
    width: auto;
    max-height: 40vh;
  }
}
@media (min-width: 1024px) {
  .splash-logo-container .logo-splash {
    width: auto;
    max-height: 30vh;
  }
}
.splash-logo-container.fade-out {
  animation: fadeOut 2s ease-in-out forwards;
}

@keyframes fadeInPulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

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