/* google font*/
body {
    font-family: 'Exo';font-size: 16px;
}

/* Carousel CSS */
.carousel-inner img {
    width: 100%;
    height: 100%;
}

/* Jumbotron CSS, change the background image link */
/* editted text color & image */
.jumbotron {
    text-align: center;
    margin-bottom: 0;
    color: white;
    background-image: url("images/bg.png");
/* jumbotron background img size is 2560 x 1440 px*/
    background-size: cover;
    border-radius: 0 !important; /* get rid off curved edges*/
}

/* FOR BUTTON on index page*/
.btn {
    background-color: rgb(65, 109, 150);
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
  }
  
/* Darker background on mouse-over */
  .btn:hover {
    background-color: rgb(51, 58, 77);
    color: rgb(233, 233, 233);
  }

  .navbar-expand-sm .navbar-collapse { 
    justify-content: center;
  }
/* navigation bar */
    .navbar-nav{
        margin: 2px;
    }

    .nav-item {
        padding: 5px;
        font-size: 16px;
    }

/* shadow under nav bar*/
    .navbar {
        filter: drop-shadow(0px 10px 11px #343a40);
    }

    .navbar-dark .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.842);
    }

/* colour of the links */
    .nav-link {
        color: green;
    }

    .nav-link:hover {
        color: black;
        text-decoration: underline;
    }

    .nav-link.active {
        font-weight: bold;
        text-decoration: underline;
    }

    .contact-link {
        color: green;
    }

    .contact-link:hover {
        color: black;
        text-decoration: underline;
    }

/* resize footer for gallery from mobile phones 600px and down*/
 @media only screen and (max-width: 895px) {
    body, wrapper {
        min-height: 10vh;
     }
}

/* resize footer for gallery from mobile phones 576px and down*/
 @media only screen and (max-width: 576px) {
    body, wrapper {
        min-height: 30vh;
     }
}

html, body {
  height:100%;
  }