body {
  font-family: 'Inter', sans-serif;
  font-variant-ligatures: none;
  cursor: default;
  color: #000;
  background-color: #0e0e0e;
  border-top: 3px solid #f52f6e;
}

.bg-dark {
  background-color: #0e0e0e !important;
}

nav {
  color: #fff;
}

.nav-link {
  transition: opacity .15s ease-in-out;
}

.nav-link.active {
  cursor: default;
  pointer-events: none;
  opacity: .5;
}

.nav-link:hover {
  color: #f52f6e !important;
}

.navbar-toggler:focus {
  outline: 0;
}

.navbar-toggler:active {
  opacity: .5;
}

@media (max-width: 575.98px) {
  .navbar-nav > .nav-item {
    border-top: 1px solid rgba(255, 255, 255, .3);
  }
  .navbar-nav > .nav-item > .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
  .navbar-nav:first-child {
    margin-top: 2rem;
  }
}

main {
  background-image: url('./img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

main h1 {
  font-size: 57px;
  font-weight: 600;
  letter-spacing: -2px;
}

main p {
  font-size: 18px;
}

main hr {
  border: 0;
  border-top: 1px solid #0e0e0e;
  max-width: 70px;
}

@media (min-height: 787px) {
  nav .container {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  footer .container {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

.btn {
  position: relative;
  background-color: #ff0072;
  font-size: 18px;
  width: 220px;
  padding: 13px 37px;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 2px;
}

.btn:after {
  position: absolute;
  content: '';
  opacity: 0;  
  top: 19px;
  right: -10px;
  transition: 0.5s;
  background-image: url('./img/arrow.svg');
  background-repeat: no-repeat;
  width: 10px;
  height: 18px;
}

.btn:hover {
  padding-left: 20px;
}

.btn:hover:after {
  opacity: 1;
  right: 30px;
}

.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 114,.5);
}

footer {
  color: #0e0e0e;
}

.bg-strip {
  height: 170px;
  bottom: 0;
}

section h5 {
  font-weight: bold;
}

.up-from-surface {
  z-index: 1;
}