body
{
  font-family: 'Poppins', sans-serif;
  background-image: url("imgs/wallpaper.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  padding-bottom: 75px;
}
@media (min-width: 768px)
{
  body
  {
    padding-bottom: 110px;
  }
}

.overlay-1
{
  position: relative;
  z-index: 1;
}
.overlay-1::before
{
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.navbar-brand
{
  margin-right: 0;
}
.navbar-brand img
{
  height: 21px;
}
.navbar-brand .name
{
  font-weight: bold;
}
.navbar-brand .slogan
{
  display: block;
  position: absolute;
  font-size: .7em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.navbar-dark
{
  padding-top: 35px;
  padding-bottom: 35px;
}
.navbar-dark .navbar-text
{
  color: #ffffff;
  opacity: 1;
  padding: 0 20px;
  border-right: 1px solid #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.navbar-dark .navbar-text:last-child
{
  border-right: 0;
}
@media (max-width: 767px)
{
  .navbar-brand .slogan
  {
    display: block;
    position: absolute;
    font-size: .7em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
  }
  .navbar-dark
  {
    padding-bottom: 0;
  }
}

.page-title
{
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5rem;
  font-size: 5rem;
  text-align: center;
  margin-bottom: .5rem;
}
@media (max-width: 767px)
{
  .page-title
  {
    font-size: 4rem;
    margin-bottom: 14px;
  }
}

.page-description
{
  font-size: 18px;
  margin-bottom: 59px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px)
{
  .page-description
  {
    font-size: 14px;
  }
}

p
{
  font-size: 14px;
  margin-bottom: 21px;
}

.social-links
{
  text-align: center;
}
.social-links .social-link
{
  display: inline-block;
  text-align: center;
  line-height: 1.8em;
  width: 1.8em;
  height: 1.8em;
  color: #ffffff;
  font-size: 1.8em;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 2px;
  transition: all 0.15s ease-in-out;
}
.social-links .social-link:hover
{
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
}

.copyright
{
  font-size: .75em;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}