/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}

:root {
  --yellow: #FBF321; /* Global variable */
  --navy: #002535;   /* Another global variable */
}

.yellow {
  color: var(--yellow);
}


/*
 * Base structure
 */

body {
  background-color: var(--navy) !important;
  justify-content: flex-end;
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

.cover-container {
  display: flex;
  align-content: center;
  align-items: center;
}

h1,h2,h3,h4,h5,h6,p,a {
  font-family: 'Montserrat';
  color: white !important;
}

h1 {
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.synechron-btn {
  border-radius: 25px !important;
  background-color: var(--yellow) !important;
  color: var(--navy) !important;
  font-size: 16px !important;
}

.img-container {
  padding: 5%;
}

img {
  height: 100%;
  width: 100%;
}



@media screen and (max-width: 800px) {
  body {
    flex-direction: column-reverse !important;
    justify-content: center !important;
  }

  h1 {
    margin-bottom: 3rem !important;
  }

  body .cover-container {
    height: 30% !important;
    align-items: flex-end !important;
  }

  img {
    display: none;
  }

  .img-container {
    height: 60% !important;
    background-image: url("../images/Aus Map.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    margin-right: 15%;
  }
}