:root {
    --ms-blue: #0d6efd;
    --ms-indigo: #6610f2;
    --ms-purple: #6f42c1;
    --ms-pink: #d63384;
    --ms-red: #dc3545;
    --ms-orange: #fd7e14;
    --ms-yellow: #ffc107;
    --ms-body-font-size: 1rem;
    --ms-body-font-weight: 400;
    --ms-body-line-height: 1.5;
    --ms-body-color: rgba(255, 255, 255, .85);
    --ms-body-bg: #000;
    --ms-link-color: #fff;
    --ms-link-hover-color: #0a58ca;
    --ms-logo-height: 55px;
}

h1 {
  font-size: 4rem;
  font-family: 'Oswald';
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (max-width: 580px) {
  h1 {
    font-size: 1.5rem !important;
  }
}
.headline {
  padding-top: 10px;
}
/* NavBar */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 1050;
  background: none;
  padding: 10px 0px;
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(15px) brightness(0.5);
  -webkit-backdrop-filter: blur(15px) brightness(0.5);
}

.nav-link {
  padding: 5px 5px;
}

.nav-link a {
  font-size: 75px;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  -webkit-text-stroke: 0.5px white;
  -webkit-text-fill-color: transparent;
  transition: text-fill 0.6s ease-in;
  -webkit-transition: text-fill 0.6s ease-in;
}

.nav-link:hover a {
  -webkit-text-stroke: 0.5px white;
  -webkit-text-fill-color: #e1e1e1;
}

.social-link>svg {
  width: 60px;
  height: 60px;
}

.logo {
  height: var(--ms-logo-height);
}

/* BG */
.bg-welcome {
  background-image: url("/images/bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.img-cover {
  width: 70%;
  height: auto;
  z-index: 0;
}
.img-cover-2 {
  width: 80%;
  height: auto;
  z-index: 0;
}